Cloud_Computing_II/Dockerfile.Frontend

7 lines
276 B
Docker
Raw Normal View History

2023-03-13 14:25:15 +00:00
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