-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile.admin
More file actions
62 lines (44 loc) · 1.42 KB
/
Dockerfile.admin
File metadata and controls
62 lines (44 loc) · 1.42 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
# Build stage
FROM node:20-alpine AS builder
# Install pnpm
RUN npm install -g pnpm
# Set working directory
WORKDIR /app
# Increase Node.js memory limit for build
ENV NODE_OPTIONS="--max-old-space-size=4096"
# Copy package files
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
COPY apps/admin/package.json ./apps/admin/
# Install dependencies
RUN pnpm install --frozen-lockfile
# Copy source code
COPY apps/admin ./apps/admin
COPY tsconfig.base.json ./
# Build the application
WORKDIR /app/apps/admin
RUN pnpm run build
# Production stage
FROM node:20-alpine AS production
# Install pnpm
RUN npm install -g pnpm
# Set working directory
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
COPY apps/admin/package.json ./apps/admin/
# Install production dependencies only
RUN pnpm install --frozen-lockfile --prod
# Copy built application from builder
COPY --from=builder /app/apps/admin/build ./apps/admin/build
COPY --from=builder /app/apps/admin/package.json ./apps/admin/
# Set working directory to admin
WORKDIR /app/apps/admin
# Set port environment variable
ENV PORT=3001
# Expose port (admin typically runs on a different port)
EXPOSE 3001
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=40s --retries=3 \
CMD node -e "require('http').get('http://localhost:3001', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})"
# Start the application
CMD ["node", "build"]