-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
71 lines (54 loc) · 2.15 KB
/
Dockerfile
File metadata and controls
71 lines (54 loc) · 2.15 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# syntax=docker.io/docker/dockerfile:1
FROM node:22-bookworm AS base
#install ffmpeg
RUN apt-get update && apt-get install -y ffmpeg
# 1. Install dependencies only when needed
FROM base AS deps
# No need as we using debian based image
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
#RUN apt-get update && apt-get install -y libc6-compat
WORKDIR /app
# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* .npmrc* ./
RUN \
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
elif [ -f package-lock.json ]; then npm ci; \
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i; \
else echo "Lockfile not found." && exit 1; \
fi
# 2. Rebuild the source code only when needed
FROM base AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
COPY prisma ./prisma
# This will do the trick, use the corresponding env file for each environment.
#COPY .env.production.sample .env.production
RUN npm install --save @ffmpeg-installer/ffmpeg
RUN npx prisma migrate deploy
RUN npx prisma generate
RUN npm run build
# 3. Production image, copy all the files and run next
FROM base AS runner
WORKDIR /app
ENV NODE_ENV=production
#Create nodejs group and nextjs user
RUN addgroup --system nodejs && adduser --system --ingroup nodejs nextjs
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
COPY --from=builder --chown=nextjs:nodejs /app/prisma ./prisma/
RUN npm install --save @ffmpeg-installer/ffmpeg
RUN npm install --save-dev prisma
RUN npm install @prisma/client --save
RUN mkdir -p /temp/stroygetter
RUN mkdir -p /temp/stroygetter/source/
RUN mkdir -p /temp/stroygetter/cached/
RUN chown -R nextjs:nodejs /temp/stroygetter/
RUN npx prisma migrate deploy
RUN npx prisma generate
USER nextjs
EXPOSE 3000
ENV PORT=3000
CMD HOSTNAME="0.0.0.0" node server.js