Files
MitarbeiterPulsDashboard/Dockerfile
2026-04-07 17:25:18 +02:00

10 lines
273 B
Docker

FROM nginx:1.27-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY stitch-landingpage.html /usr/share/nginx/html/index.html
EXPOSE 80
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD wget -q -O /dev/null http://127.0.0.1/ || exit 1