diff --git a/Dockerfile b/Dockerfile index bb2d8bb..9f88307 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN cd /temp/prod && bun install --production --frozen-lockfile FROM base AS release COPY --from=install /temp/prod/node_modules node_modules COPY --from=install /usr/src/app/src ./src -COPY --from=install /usr/src/app/package.json . +COPY --from=install /temp/prod/package.json . # run the app USER bun