Skip to content
Open
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,7 +1,7 @@
# ---------------------
# Build stage
# ---------------------
FROM oven/bun:1.3.3-alpine AS build
FROM oven/bun:1.3.14-alpine AS build

WORKDIR /app

Expand All @@ -21,7 +21,7 @@ RUN bun --bun run build
# ---------------------
# Production stage
# ---------------------
FROM oven/bun:1.3.3-alpine AS production
FROM oven/bun:1.3.14-alpine AS production

# Create non-root user
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
Expand Down