From c0431a685751afe58a67f055d256cb6d7001aff2 Mon Sep 17 00:00:00 2001 From: Philipp Lang Date: Thu, 20 Jul 2023 17:52:48 +0200 Subject: [PATCH] Fix nginx build --- .docker/nginx.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.docker/nginx.Dockerfile b/.docker/nginx.Dockerfile index c6544b48..4f262b00 100644 --- a/.docker/nginx.Dockerfile +++ b/.docker/nginx.Dockerfile @@ -5,7 +5,7 @@ RUN npm install && npm run prod && npm run img && rm -R node_modules FROM nginx:1.21.6-alpine as nginx WORKDIR /app -COPY --chown=www-data:www-data --from=node /app /app +COPY --chown=www-data:www-data --from=node . /app COPY ./.docker/nginx/nginx.conf /etc/nginx/nginx.conf EXPOSE 80