-
Notifications
You must be signed in to change notification settings - Fork 6
/
Dockerfile
39 lines (28 loc) · 820 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 imbios/bun-node AS deps
WORKDIR /app
COPY package.json ./
COPY /prisma ./prisma
RUN bun install
#############################################
# Rebuild the source code only when needed
# Stage 1
FROM imbios/bun-node AS builder
WORKDIR /app
COPY . .
COPY --from=deps /app/node_modules ./node_modules
RUN bun run build
#############################################
# Production image, copy only production files
# Stage 2
FROM imbios/bun-node 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 bun start
#############################################