Skip to content
Closed
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##### DEPENDENCIES

FROM oven/bun:1.2.18-alpine AS deps
FROM oven/bun:1.2.21-alpine AS deps
RUN apk add --no-cache libc6-compat openssl
WORKDIR /app

Expand All @@ -12,7 +12,7 @@ RUN bun install --frozen-lockfile

##### BUILDER

FROM oven/bun:1.2.18-alpine AS builder
FROM oven/bun:1.2.21-alpine AS builder

WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
Expand All @@ -27,7 +27,7 @@ RUN bun run build;

##### RUNNER

FROM oven/bun:1.2.18-alpine AS runner
FROM oven/bun:1.2.21-alpine AS runner
WORKDIR /app

ENV NODE_ENV=production
Expand Down