update
This commit is contained in:
parent
45b900039a
commit
a0ed7a9b4a
2 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,7 @@ LABEL maintainer="Jason Wilder mail@jasonwilder.com"
|
|||
RUN apt-get update \
|
||||
&& apt-get install -y -q --no-install-recommends \
|
||||
ca-certificates \
|
||||
wget \
|
||||
wget curl \
|
||||
&& apt-get clean \
|
||||
&& rm -r /var/lib/apt/lists/*
|
||||
|
||||
|
@ -33,7 +33,7 @@ ENV DOCKER_HOST unix:///tmp/docker.sock
|
|||
|
||||
VOLUME ["/etc/nginx/certs", "/etc/nginx/dhparam"]
|
||||
|
||||
HEALTHCHECK --start-period=1m CMD /app/docker-healthcheck.sh || exit 1
|
||||
HEALTHCHECK --start-period=10s CMD /app/docker-healthcheck.sh || exit 1
|
||||
|
||||
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|
||||
CMD ["forego", "start", "-r"]
|
||||
|
|
|
@ -3,7 +3,7 @@ LABEL maintainer="Jason Wilder mail@jasonwilder.com"
|
|||
|
||||
# Install wget and install/updates certificates
|
||||
RUN apk add --no-cache --virtual .run-deps \
|
||||
ca-certificates bash wget openssl \
|
||||
ca-certificates bash wget openssl curl \
|
||||
&& update-ca-certificates
|
||||
|
||||
|
||||
|
@ -30,7 +30,7 @@ ENV DOCKER_HOST unix:///tmp/docker.sock
|
|||
|
||||
VOLUME ["/etc/nginx/certs", "/etc/nginx/dhparam"]
|
||||
|
||||
HEALTHCHECK --start-period=1m CMD /app/docker-healthcheck.sh || exit 1
|
||||
HEALTHCHECK --start-period=10s CMD /app/docker-healthcheck.sh || exit 1
|
||||
|
||||
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|
||||
CMD ["forego", "start", "-r"]
|
||||
|
|
Loading…
Reference in a new issue