Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
##### DEPENDENCIES
FROM oven/bun:1.3.9-debian AS deps
FROM oven/bun:1.3.10-debian AS deps
WORKDIR /app

COPY package.json bun.lock ./

RUN bun install --frozen-lockfile

##### BUILDER
FROM oven/bun:1.3.9-debian AS builder
FROM oven/bun:1.3.10-debian AS builder

WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
Expand Down
Loading