diff --git a/explorer/Dockerfile b/explorer/Dockerfile index f53e7f16..d4091840 100644 --- a/explorer/Dockerfile +++ b/explorer/Dockerfile @@ -2,9 +2,9 @@ FROM nginx:latest # Copy the contents of your local /explorer folder to the container's working directory -COPY ../explorer/index.html /usr/share/nginx/html -COPY ../explorer/main.js /usr/share/nginx/html -COPY ../explorer/nginx.conf /etc/nginx/nginx.conf +COPY index.html /usr/share/nginx/html +COPY main.js /usr/share/nginx/html +COPY nginx.conf /etc/nginx/nginx.conf # Expose port 80 for web traffic EXPOSE 80