-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdockerfile
More file actions
57 lines (36 loc) · 1.12 KB
/
dockerfile
File metadata and controls
57 lines (36 loc) · 1.12 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
FROM node:24-alpine AS base
# Deps stage
FROM base AS deps
RUN apk add --no-cache libc6-compat
ENV NODE_OPTIONS="--max-old-space-size=4096"
WORKDIR /app
COPY App/package.json ./
COPY App/package-lock.json ./
RUN npm ci
# Build stage
FROM base AS builder
ENV NODE_OPTIONS="--max-old-space-size=4096"
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY App/ .
# Build both Next.js app and TypeScript server
RUN npm run build
# Production stage
FROM base AS runner
WORKDIR /app
ENV NODE_ENV=production
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
COPY --from=builder /app/public ./public
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
# Copy our custom server
COPY --from=builder --chown=nextjs:nodejs /app/dist/server.js ./server.js
# Install only the production dependencies our custom server needs
COPY --from=builder /app/package.json ./
RUN npm install --production --ignore-scripts ws uuid
USER nextjs
EXPOSE 3000
ENV PORT=3000
ENV HOSTNAME="0.0.0.0"
CMD ["node", "server.js"]