use correct bun base type for Dockerfile

This commit is contained in:
2025-08-27 18:18:46 +02:00
parent d15f2e2d36
commit beaee4ae05

View File

@@ -1,9 +1,11 @@
FROM bun:latest FROM oven/bun
WORKDIR /app WORKDIR /app
COPY package.json bun.lock ./ COPY package.json bun.lock ./
RUN bun install
COPY . . COPY . .
RUN bun run build RUN bun run build