Skip to content

Commit

Permalink
опечатка
Browse files Browse the repository at this point in the history
  • Loading branch information
thedemoncat committed Feb 7, 2022
1 parent ddb71c7 commit ac2a9b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile_s
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM alpine:latest
COPY oneget /
RUN set -x; \
chmod +x /oneget
chmod +x /oneget; \
apk add curl
ENV ONEGET_HTTP_SERVER_PORT=8080
ENV ONEGET_ENABLE_HTTP_SERVER=true
HEALTHCHECK --interval=1m --timeout=3s \
CMD nc -vz -w 2 localhost $ONEGET_HTTP_SERVER_PORT || exit 1'
CMD nc -vz -w 2 localhost $ONEGET_HTTP_SERVER_PORT || exit 1
ENTRYPOINT ["/oneget"]

0 comments on commit ac2a9b9

Please sign in to comment.