Skip to content

Commit dda44f7

Browse files
authored
fix(build): remove incompatible --frozen-lockfile and --omit dev from docker (#2341)
* fix(build): remove incompatible --frozen-lockfile and --omit dev from docker * ack PR comments
1 parent 668118b commit dda44f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/app.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COPY packages/db/package.json ./packages/db/package.json
1818
# Install turbo globally and dependencies with cache mount for faster builds
1919
RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \
2020
bun install -g turbo && \
21-
bun install --frozen-lockfile --omit dev --ignore-scripts
21+
bun install --omit=dev --ignore-scripts
2222

2323
# ========================================
2424
# Builder Stage: Build the Application

docker/realtime.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ COPY packages/db/package.json ./packages/db/package.json
1717

1818
# Install dependencies with cache mount for faster builds
1919
RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \
20-
bun install --frozen-lockfile --omit dev --ignore-scripts
20+
bun install --omit=dev --ignore-scripts
2121

2222
# ========================================
2323
# Builder Stage: Prepare source code

0 commit comments

Comments
 (0)