forked from 0-don/coding.global-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
39 lines (28 loc) · 805 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Install dependencies only when needed
# Stage 0
FROM node:lts AS deps
WORKDIR /app
COPY package.json ./
COPY /prisma ./prisma
RUN yarn install
#############################################
# Rebuild the source code only when needed
# Stage 1
FROM node:lts AS builder
WORKDIR /app
COPY . .
COPY --from=deps /app/node_modules ./node_modules
RUN yarn build
#############################################
# Production image, copy only production files
# Stage 2
FROM node:lts AS prod
USER root
WORKDIR /app
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/.env ./.env
COPY --from=builder /app/prisma ./prisma
CMD ["yarn", "start"]
#############################################