Skip to content

Commit

Permalink
fix(build): prisma not being copied over
Browse files Browse the repository at this point in the history
  • Loading branch information
diced committed Aug 25, 2021
1 parent f929f6a commit 47db6cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /build
COPY src ./src
COPY server ./server
COPY scripts ./scripts
COPY prisma/schema.prisma ./prisma/schema.prisma
COPY prisma ./prisma

COPY package.json yarn.lock next.config.js next-env.d.ts zip-env.d.ts tsconfig.json ./

Expand All @@ -23,6 +23,7 @@ COPY --from=builder /build/node_modules ./node_modules
COPY --from=builder /build/src ./src
COPY --from=builder /build/server ./server
COPY --from=builder /build/scripts ./scripts
COPY --from=builder /build/prisma ./prisma
COPY --from=builder /build/.next ./.next
COPY --from=builder /build/tsconfig.json ./tsconfig.json
COPY --from=builder /build/package.json ./package.json
Expand Down

0 comments on commit 47db6cf

Please sign in to comment.