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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM oven/bun:1.3-slim AS dependencies
FROM oven/bun:1.4-slim AS dependencies
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install
Expand All @@ -18,7 +18,7 @@ EXPOSE 4321
CMD ["bun", "run", "dev"]

# Production stage
FROM oven/bun:1.3-slim AS production
FROM oven/bun:1.4-slim AS production
WORKDIR /app

COPY --from=build /app/node_modules ./node_modules
Expand Down