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
|
2023-04-03 12:11:28 +00:00
|
|
|
COPY ./frontend/languages.js /usr/share/nginx/html/languages.js
|
|
|
|
COPY ./frontend/favicon.ico /usr/share/nginx/html/favicon.ico
|
2023-03-13 14:25:15 +00:00
|
|
|
|
|
|
|
HEALTHCHECK --interval=1m --timeout=3s CMD curl --fail http://localhost/ || exit 1
|