dockerize

This commit is contained in:
Aidan 2025-07-03 02:06:50 -04:00
parent 0f94d1300e
commit 1d7a3ed034
3 changed files with 23 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM oven/bun:latest
WORKDIR /app
COPY . .
RUN bun install
RUN bun run build
EXPOSE 3000
CMD ["bun", "run", "start"]