From 4b8a0e25bb592ef350b0f7ddf0e4c3ceb095d147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksa=20Siri=C5=A1ki?= <31509435+aleksasiriski@users.noreply.github.com> Date: Thu, 2 Nov 2023 17:38:45 +0100 Subject: [PATCH] fix: dockerfile dir --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef8372c3..eb75183f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN cd /temp && npm ci # copy node_modules from temp directory # then copy all (non-ignored) project files into the image FROM base AS build -COPY --from=install /temp/node_modules node_modules +COPY --from=install /temp/node_modules node_modules/ COPY . . # build @@ -39,4 +39,4 @@ EXPOSE 3000 # run the app ENTRYPOINT [ "tini", "--" ] -CMD [ "bun", "run", "start" ] \ No newline at end of file +CMD [ "bun", "run", "start" ]