Skip to content

Commit 40e4e8f

Browse files
committed
refreeze
1 parent 053ae62 commit 40e4e8f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ WORKDIR /usr/src/app
88
FROM base AS install
99
RUN mkdir -p /temp/dev
1010
COPY package.json bun.lockb /temp/dev/
11-
RUN cd /temp/dev && bun install
11+
RUN cd /temp/dev && bun install --frozen-lockfile
1212

1313
# install with --production (exclude devDependencies)
1414
RUN mkdir -p /temp/prod
1515
COPY package.json bun.lockb /temp/prod/
16-
RUN cd /temp/prod && bun install --production
16+
RUN cd /temp/prod && bun install --production --frozen-lockfile
1717

1818
# copy node_modules from temp directory
1919
# then copy all (non-ignored) project files into the image

0 commit comments

Comments
 (0)