9 lines
196 B
Docker
9 lines
196 B
Docker
FROM nginx:alpine
|
|
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
|
|
EXPOSE 80
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \
|
|
CMD wget -qO- http://localhost/ || exit 1
|