From bccfcc680a6217e50aa4e7c4d597a99cba43c704 Mon Sep 17 00:00:00 2001 From: Alie Date: Sun, 14 Jan 2024 13:23:36 +0100 Subject: [PATCH] wrong source from in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f88307..bd1678d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,8 +22,8 @@ RUN cd /temp/prod && bun install --production --frozen-lockfile # Copy production dependencies and source code into final image FROM base AS release COPY --from=install /temp/prod/node_modules node_modules -COPY --from=install /usr/src/app/src ./src COPY --from=install /temp/prod/package.json . +COPY ./src ./src # run the app USER bun