Files
coolify-examples/dockerfile/Dockerfile
2024-03-13 10:40:02 +01:00

4 lines
191 B
Docker

FROM nginx:alpine
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