diff --git a/tksafety/web/Dockerfile b/tksafety/web/Dockerfile index e77648c..dc12d9e 100644 --- a/tksafety/web/Dockerfile +++ b/tksafety/web/Dockerfile @@ -1,7 +1,6 @@ FROM nginx:alpine COPY nginx.conf /etc/nginx/conf.d/default.conf -COPY index.html /usr/share/nginx/html/index.html -COPY education.html /usr/share/nginx/html/education.html +COPY *.html /usr/share/nginx/html/ COPY static/ /usr/share/nginx/html/static/ EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]