From 94b5493065cc51b6fa6bb7dbacd5eb94cceaa797 Mon Sep 17 00:00:00 2001 From: DhananjayPurohit Date: Tue, 16 Apr 2024 13:06:38 +0530 Subject: [PATCH] fix: change index.html to explorer.html --- explorer/Dockerfile | 2 +- explorer/{index.html => explorer.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename explorer/{index.html => explorer.html} (100%) diff --git a/explorer/Dockerfile b/explorer/Dockerfile index 552d8872..75114600 100644 --- a/explorer/Dockerfile +++ b/explorer/Dockerfile @@ -2,7 +2,7 @@ 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/explorer.html /usr/share/nginx/html COPY ../explorer/main.js /usr/share/nginx/html # Expose port 80 for web traffic diff --git a/explorer/index.html b/explorer/explorer.html similarity index 100% rename from explorer/index.html rename to explorer/explorer.html