-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.Dockerfile
More file actions
38 lines (26 loc) · 869 Bytes
/
server.Dockerfile
File metadata and controls
38 lines (26 loc) · 869 Bytes
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
# --- Stage 1: Build the TypeScript server ---
FROM node:20-alpine AS builder
WORKDIR /app/server
COPY server/package*.json ./
RUN npm ci
COPY server/ ./
RUN npm run build
# --- Stage 2: Production image ---
FROM node:20-alpine AS production
WORKDIR /app/server
# Install Docker CLI so the server can manage execution containers
RUN apk add --no-cache docker-cli
ENV NODE_ENV=production
ENV PORT=3000
# Install production dependencies only (includes autocannon for load tests)
COPY server/package*.json ./
RUN npm ci --omit=dev
# Copy compiled server from builder
COPY --from=builder /app/server/dist ./dist
# Copy test runner scripts (used by admin dashboard load tests)
COPY server/tests/ ./tests/
# Copy cleanup script and ensure it is executable
COPY scripts/cleanup.sh ../cleanup.sh
RUN chmod +x ../cleanup.sh
EXPOSE 3000
CMD ["node", "dist/index.js"]