We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d01b6e9 commit c97ad8cCopy full SHA for c97ad8c
Dockerfile
@@ -3,6 +3,7 @@ FROM node:22-alpine AS builder
3
COPY package*.json /app/
4
COPY tsconfig.json /app/
5
COPY src /app/src
6
+COPY migrations /app/migrations
7
8
WORKDIR /app
9
@@ -15,6 +16,7 @@ WORKDIR /app
15
16
COPY --from=builder /app/dist /app/dist
17
COPY --from=builder /app/package.json /app/package.json
18
COPY --from=builder /app/package-lock.json /app/package-lock.json
19
+COPY --from=builder /app/migrations /app/migrations
20
21
ENV NODE_ENV=production
22
0 commit comments