-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
38 lines (28 loc) · 962 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
# Build stage
FROM node:22-alpine AS builder
WORKDIR /app
# Copy package files and npm configuration
COPY package*.json .npmrc ./
# Install all dependencies (including dev dependencies) with cache mount for faster builds
RUN --mount=type=cache,target=/root/.npm \
npm ci
# Copy source code and build
COPY . .
RUN npm run build
# Production stage
FROM node:22-alpine
# Create non-root user
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
# Set working directory and ownership
WORKDIR /app
RUN chown -R appuser:appgroup /app
# Copy built application from builder stage
COPY --from=builder --chown=appuser:appgroup /app/dist ./dist
COPY --from=builder --chown=appuser:appgroup /app/node_modules ./node_modules
COPY --from=builder --chown=appuser:appgroup /app/package*.json ./
# Set security configurations
RUN apk add --no-cache dumb-init
USER appuser
# Use dumb-init as PID 1
ENTRYPOINT ["dumb-init", "--"]
CMD ["node", "dist/server.js"]