Fix Coolify Docker build
This commit is contained in:
parent
b63ca581f5
commit
bd792cdd7b
2 changed files with 4 additions and 2 deletions
|
|
@ -64,7 +64,6 @@ jspm_packages/
|
|||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
public
|
||||
|
||||
# Storybook build outputs
|
||||
.out
|
||||
|
|
@ -73,6 +72,9 @@ public
|
|||
# Temporary folders
|
||||
tmp/
|
||||
temp/
|
||||
.pnpm-store/
|
||||
.formatting-backups/
|
||||
.cursor/
|
||||
|
||||
# Logs
|
||||
logs
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ FROM node:20-alpine AS builder
|
|||
WORKDIR /app
|
||||
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
RUN npm ci --legacy-peer-deps
|
||||
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
|
|
|
|||
Loading…
Reference in a new issue