2023-03-10 08:21:39 +00:00
|
|
|
FROM nginx:latest
|
|
|
|
|
|
|
|
COPY ./index.html /usr/share/nginx/html/index.html
|
|
|
|
COPY ./index.css /usr/share/nginx/html/index.css
|
2023-03-13 12:37:23 +00:00
|
|
|
COPY ./index.js /usr/share/nginx/html/index.js
|
|
|
|
|
|
|
|
HEALTHCHECK --interval=1m --timeout=3s CMD curl --fail http://localhost/ || exit 1
|