From dd67a7fa1c7b1103ad6e92e2c64c446c6c950f75 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Tue, 17 Dec 2024 13:38:21 +0000 Subject: [PATCH] Fix copy of entrypoint script --- WebDisplay/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebDisplay/Dockerfile b/WebDisplay/Dockerfile index 0f9ef2a..3c2a0d1 100644 --- a/WebDisplay/Dockerfile +++ b/WebDisplay/Dockerfile @@ -13,7 +13,7 @@ COPY nginx/default.conf /etc/nginx/conf.d/ RUN rm -rf /usr/share/nginx/html/* COPY --from=build-stage /app/dist /usr/share/nginx/html EXPOSE 80 -COPY ./entrypoint.sh ./entrypoint.sh +COPY ./nginx/entrypoint.sh ./entrypoint.sh RUN chmod +x ./entrypoint.sh ENTRYPOINT ["./entrypoint.sh"] CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file