-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
43 lines (27 loc) · 927 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
40
41
42
43
# ======================================== deps
FROM node:18-alpine AS deps
WORKDIR /app
# for cache and install deps
COPY package.json package-lock.json ./
# just install deps - not dev-deps
RUN npm install --production
# ======================================== build
FROM node:18-alpine AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN npm run build
# ======================================== run after build
FROM node:18-alpine AS runner
WORKDIR /app
# default prod - dev? pass the NODE_ENV development in docker compose file
ENV NODE_ENV production
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/.next ./.next
COPY --from=builder /app/public ./public
# for custome config file
COPY --from=builder /app/next.config.js ./next.config.js
COPY --from=builder /app/package.json ./package.json
EXPOSE 3000
ENV PORT 3000
CMD ["npm", "start"]