Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/core/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM mcr.microsoft.com/azurelinux/base/nodejs:20 AS builder
WORKDIR /app

# Install pnpm
RUN corepack enable && corepack prepare pnpm@9 --activate
RUN npm install -g pnpm@9

# Copy workspace config and registry settings
COPY package.json pnpm-workspace.yaml pnpm-lock.yaml* .npmrc ./
Expand Down Expand Up @@ -31,7 +31,7 @@ RUN npx nest build
FROM mcr.microsoft.com/azurelinux/base/nodejs:20 AS production
WORKDIR /app

RUN corepack enable && corepack prepare pnpm@9 --activate
RUN npm install -g pnpm@9
RUN tdnf install -y wget shadow-utils && tdnf clean all

# Copy built app
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM mcr.microsoft.com/azurelinux/base/nodejs:20 AS builder
WORKDIR /app

RUN corepack enable && corepack prepare pnpm@9 --activate
RUN npm install -g pnpm@9

# Copy workspace config and registry settings
COPY package.json pnpm-workspace.yaml pnpm-lock.yaml* .npmrc ./
Expand Down
Loading