fix docker builds
All checks were successful
ci/woodpecker/push/build-image Pipeline was successful

This commit is contained in:
2025-04-21 23:16:45 -07:00
parent 101c53709d
commit ee261142e8
3 changed files with 123 additions and 71 deletions

View File

@@ -14,7 +14,7 @@ RUN cd /temp/dev && bun install --frozen-lockfile
# install with --production (exclude devDependencies)
RUN mkdir -p /temp/prod
COPY package.json bun.lock /temp/prod/
RUN cd /temp/prod && bun install --frozen-lockfile --production
RUN cd /temp/prod && bun install --frozen-lockfile --production --ignore-scripts
# copy node_modules from temp directory
# then copy all (non-ignored) project files into the image