From 758620616f4f181770ccfc0f2ead568286356518 Mon Sep 17 00:00:00 2001 From: Tracey Jaquith Date: Sat, 6 Jan 2024 20:12:59 -0800 Subject: [PATCH] ready to go --- .dockerignore | 1 - Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index 8322eca..f4617c2 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,3 +1,2 @@ .git* Dockerfile -default.conf diff --git a/Dockerfile b/Dockerfile index c931b83..d494631 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM nginx:alpine WORKDIR /usr/share/nginx/html -# RUN rm -f index.html +RUN rm -f index.html COPY default.conf /etc/nginx/conf.d/ COPY . .