🐳 Adds docker integration

This commit is contained in:
Daniel Svitan
2025-05-01 14:07:17 +02:00
parent d4fbfa1a7a
commit 2118f0cf44
15 changed files with 1153 additions and 26 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM oven/bun:latest
WORKDIR /app
COPY . .
RUN bun install
RUN bun run build
RUN bun install --global serve
EXPOSE 3000
CMD serve dist