We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f0979c commit 439f824Copy full SHA for 439f824
Dockerfile
@@ -14,7 +14,6 @@ RUN pnpm prisma generate
14
## Build bundle ##
15
FROM install AS builder
16
COPY --from=install /app/node_modules node_modules
17
-COPY --from=install /app/package.json package.json
18
COPY . .
19
20
ARG API_SUPERKEY
@@ -36,6 +35,7 @@ RUN pnpm prisma migrate deploy
36
35
FROM base AS app
37
38
+COPY --from=install /app/package.json package.json
39
COPY --from=builder /app/build ./build
40
EXPOSE 3000/tcp
41
CMD bun ./build/index.js
0 commit comments