We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a31070 commit 763e409Copy full SHA for 763e409
1 file changed
Dockerfile-php7
@@ -8,7 +8,7 @@ LABEL org.opencontainers.image.description="Lightweight container with Nginx & P
8
LABEL org.opencontainers.image.licenses=MIT
9
10
# Install packages
11
-RUN apk --no-cache add \
+RUN apk --no-cache --update add \
12
php7 \
13
php7-cli \
14
php7-fpm \
@@ -83,7 +83,6 @@ EXPOSE 8080
83
# Ensure /bin/docker-entrypoint.sh is always executed
84
ENTRYPOINT ["/bin/docker-entrypoint.sh"]
85
86
-
87
# Configure a healthcheck to validate that everything is up&running
88
HEALTHCHECK --timeout=10s CMD curl --silent --fail http://127.0.0.1:8080/fpm-ping || exit 1
89
0 commit comments