Fix Coolify Docker build

This commit is contained in:
Codex 2026-03-25 16:03:51 -06:00
parent b63ca581f5
commit bd792cdd7b
2 changed files with 4 additions and 2 deletions

View file

@ -64,7 +64,6 @@ jspm_packages/
# Gatsby files # Gatsby files
.cache/ .cache/
public
# Storybook build outputs # Storybook build outputs
.out .out
@ -73,6 +72,9 @@ public
# Temporary folders # Temporary folders
tmp/ tmp/
temp/ temp/
.pnpm-store/
.formatting-backups/
.cursor/
# Logs # Logs
logs logs

View file

@ -2,7 +2,7 @@ FROM node:20-alpine AS builder
WORKDIR /app WORKDIR /app
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
RUN npm ci RUN npm ci --legacy-peer-deps
COPY . . COPY . .
RUN npm run build RUN npm run build