H4CK3R-01 e10db014c7
All checks were successful
build
Test gitea actions
2023-03-27 23:49:12 +02:00

7 lines
276 B
Docker

FROM nginx:latest
COPY ./frontend/index.html /usr/share/nginx/html/index.html
COPY ./frontend/index.css /usr/share/nginx/html/index.css
COPY ./frontend/index.js /usr/share/nginx/html/index.js
HEALTHCHECK --interval=1m --timeout=3s CMD curl --fail http://localhost/ || exit 1