Update Dockerfile

This commit is contained in:
Joerg (DJ7NT)
2025-04-11 18:18:27 +02:00
committed by GitHub
parent fb0fb2e508
commit bf4d7fd3ee

View File

@@ -7,7 +7,7 @@ WORKDIR /usr/src/app
# this will cache them and speed up future builds
FROM base AS install
RUN mkdir -p /temp/dev
COPY package.json bun.lockb /temp/dev/
COPY package.json /temp/dev/
RUN cd /temp/dev && bun install --frozen-lockfile
# install with --production (exclude devDependencies)