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" ]