From b337842ef43e251a11cea13a6e19fc03da75a0c1 Mon Sep 17 00:00:00 2001 From: Alie Date: Sun, 14 Jan 2024 13:19:41 +0100 Subject: [PATCH] wrong source of copy in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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