From c06402c4ebe552af600e1b5723a3117a2dc27551 Mon Sep 17 00:00:00 2001 From: Adam French Date: Tue, 20 Jan 2026 20:54:15 +0000 Subject: [PATCH] fix robots.txt --- nginx/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 5127e3c..6aade87 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -15,7 +15,6 @@ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \ COPY nginx.conf.template /etc/nginx/nginx.conf.template COPY nginx_setup.conf.template /etc/nginx/nginx_setup.conf.template -COPY robots.txt /etc/nginx/html/robots.txt COPY entrypoint.sh /entrypoint.sh WORKDIR /app @@ -27,4 +26,6 @@ RUN mkdir -p /etc/nginx/html \ && rm -rf /etc/nginx/html/* \ && cp -r ./dist/* /etc/nginx/html/ +COPY robots.txt /etc/nginx/html/robots.txt + ENTRYPOINT ["/entrypoint.sh"]