Add .env.production copy to Dockerfile for environment configuration

This commit is contained in:
Danel Kungla
2025-07-16 10:16:47 +03:00
parent 53e9349f37
commit 571637f96a

View File

@@ -8,6 +8,7 @@ RUN npm install -g pnpm@9
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./ COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
COPY packages packages COPY packages packages
COPY tooling tooling COPY tooling tooling
COPY .env.production .env
# Install all dependencies # Install all dependencies
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile