From 9b1b10ad503a9e027c60e85211c59dc5f3e95962 Mon Sep 17 00:00:00 2001 From: rk16449 Date: Wed, 27 Nov 2024 16:13:12 +0000 Subject: [PATCH] chore: make changes to explorer Dockerfile to build in its directory --- explorer/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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