Files
Power BI Dev d20851686e first init
2026-07-01 07:24:01 +07:00

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