-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
54 lines (36 loc) · 967 Bytes
/
Dockerfile
File metadata and controls
54 lines (36 loc) · 967 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
ARG VERSION=25.2.1
FROM node:${VERSION}-alpine AS base
# Install latest corepack to manage package managers
RUN npm install -g corepack@latest --force
# Install pnpm
RUN corepack enable && corepack prepare pnpm@latest --activate
# Set working directory
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml ./
# Install dependencies
FROM base AS dependencies
# Install dependencies
RUN pnpm install --frozen-lockfile
# Build stage
FROM dependencies AS build
# Copy all files
COPY . .
# Build the application
RUN pnpm build
# Production stage
FROM base AS production
ARG ENV=production
ENV APP_ENV=${ENV}
ENV APP_PORT=4000
ENV APP_HOST=0.0.0.0
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml ./
# Install only production dependencies
RUN pnpm install --frozen-lockfile --prod
# Copy built files from build stage
COPY --from=build /app/dist ./dist
# Expose application port
EXPOSE ${APP_PORT}
CMD ["node", "dist/main"]