We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f7a55 commit f557b61Copy full SHA for f557b61
1 file changed
Dockerfile
@@ -8,12 +8,12 @@ WORKDIR /usr/src/app
8
FROM base AS install
9
RUN mkdir -p /temp/dev
10
COPY package.json bun.lockb /temp/dev/
11
-RUN cd /temp/dev && bun install --frozen-lockfile
+RUN cd /temp/dev && bun install
12
13
# install with --production (exclude devDependencies)
14
RUN mkdir -p /temp/prod
15
COPY package.json bun.lockb /temp/prod/
16
-RUN cd /temp/prod && bun install --frozen-lockfile --production
+RUN cd /temp/prod && bun install --production
17
18
# copy node_modules from temp directory
19
# then copy all (non-ignored) project files into the image
0 commit comments