🐳 Adds dockerfile

This commit is contained in:
Daniel Svitan
2025-02-07 12:25:38 +01:00
parent 47bde2b22c
commit 30e00c4eba
6 changed files with 1056 additions and 41 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM oven/bun:latest as build
WORKDIR /app
COPY bun.lock* package.json ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
FROM oven/bun:latest as runner
WORKDIR /app
COPY --from=build /app/dist ./
EXPOSE 3000
CMD ["bun", "x", "serve", "--single"]