-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
65 lines (47 loc) · 1.57 KB
/
Copy pathDockerfile
File metadata and controls
65 lines (47 loc) · 1.57 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
FROM node:24.11.1-alpine3.23 AS base
# ============================================
# Stage 1: Builder
# ============================================
FROM base AS builder
# Install pnpm globally
RUN npm install -g pnpm
WORKDIR /opt/app
# Copy only package files for better layer caching
COPY package.json pnpm-lock.yaml ./
# Install all dependencies (for build)
RUN pnpm install --frozen-lockfile
# Copy source code
COPY . .
# Build the application
RUN pnpm build
# ============================================
# Stage 2: Production
# ============================================
FROM base AS production
# Install system dependencies
RUN apk add --no-cache \
ffmpeg \
dumb-init \
&& rm -rf /var/cache/apk/*
# Create non-root user for security
RUN addgroup -g 1001 -S nodejs && \
adduser -S nodejs -u 1001
WORKDIR /opt/app
# Copy built application and production dependencies
COPY --from=builder --chown=nodejs:nodejs /opt/app/dist ./dist
COPY --from=builder --chown=nodejs:nodejs /opt/app/node_modules ./node_modules
COPY --from=builder --chown=nodejs:nodejs /opt/app/package.json ./package.json
# Switch to non-root user
USER nodejs
# Set environment variables
ENV NODE_ENV=production \
PORT=3033
# Expose port
EXPOSE 3033
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=40s --retries=3 \
CMD node -e "require('http').get('http://localhost:3033/health', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})"
# Use dumb-init to handle signals properly
ENTRYPOINT ["dumb-init", "--"]
# Start the application
CMD ["node", "dist/server/index.js"]