From 855de986434bc9d53f6a84d107c12726a22e3044 Mon Sep 17 00:00:00 2001 From: kenlight-bu Date: Thu, 26 Sep 2024 10:34:09 -0400 Subject: [PATCH] changing relative paths again --- code/server/Dockerfile.production | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/server/Dockerfile.production b/code/server/Dockerfile.production index 881f05858..2cb906d60 100644 --- a/code/server/Dockerfile.production +++ b/code/server/Dockerfile.production @@ -20,7 +20,7 @@ RUN npm run build FROM nginx:alpine # Copy the shared Nginx configuration template from the host machine -COPY ../config/nginx.conf.template /etc/nginx/nginx.conf.template +COPY ./config/nginx.conf.template /etc/nginx/nginx.conf.template # Copy your web files to the container COPY --from=build /app/build /usr/share/nginx/html @@ -29,7 +29,7 @@ COPY --from=build /app/build /usr/share/nginx/html EXPOSE 80 # Copy the shared entrypoint script from the config folder (relative to the build context) -COPY ../config/entrypoint.sh /entrypoint.sh +COPY ./config/entrypoint.sh /entrypoint.sh # Make the entrypoint script executable RUN chmod +x /entrypoint.sh