From 0dd4d2c88e10590f2000262f36207973dad877c5 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 7 Apr 2024 01:03:57 -1000 Subject: [PATCH] Fix wrong copy location --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5f6b67ec..e2c8d7e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ COPY --from=install /temp/node_modules /temp/node_modules WORKDIR /temp RUN bunx --bun prisma generate RUN bun run prod-build -COPY prisma /temp +COPY prisma /temp/dist # copy production dependencies and source code into final image # Alpine (musl) causes errors with Bun :(