Skip to content

Commit

Permalink
Merge pull request #210 from lidofinance/remove-curl-version
Browse files Browse the repository at this point in the history
Remove curl from dockerfile
  • Loading branch information
F4ever authored Apr 25, 2024
2 parents 0cf4690 + 06632d6 commit 26a5c4f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ RUN apt-get update && apt-get install -y --no-install-recommends -qq \
gcc=4:10.2.1-1 \
libffi-dev=3.3-6 \
g++=4:10.2.1-1 \
curl=7.74.0-1.3+deb11u10 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down Expand Up @@ -47,7 +46,7 @@ EXPOSE $PROMETHEUS_PORT
USER www-data

HEALTHCHECK --interval=10s --timeout=3s \
CMD curl -f http://localhost:$PULSE_SERVER_PORT/healthcheck || exit 1
CMD wget --no-verbose --tries=1 --spider http://localhost:$PULSE_SERVER_PORT/healthcheck || exit 1

ENTRYPOINT ["python3"]
CMD ["src/depositor.py"]

0 comments on commit 26a5c4f

Please sign in to comment.