Update Dockerfile

This commit is contained in:
Andras Bacsai
2024-03-13 10:39:23 +01:00
committed by GitHub
parent ad0a2d5abf
commit 36d079de83

View File

@@ -1,3 +1,3 @@
FROM nginx:alpine FROM nginx:alpine
RUN echo "Hello, World!" > /usr/share/nginx/html/index.html RUN echo "Hello, World!" > /usr/share/nginx/html/index.html
HEALTHCHECK --interval=5s --timeout=3s --start-period=5s --retries=3 CMD wget -qO- http://localhost:80 || exit 1" HEALTHCHECK --interval=5s --timeout=3s --start-period=5s --retries=3 CMD "wget -qO- http://localhost:80 || exit 1"