Add Dockerfile

This commit is contained in:
2026-08-17 19:43:06 -03:00
parent 964a374a5f
commit fbb069aa81
2 changed files with 53 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM oven/bun:latest
WORKDIR /app
COPY . /app
RUN bun install
RUN bun run build
ENTRYPOINT [ "bun" ]
CMD [ "run", "start" ]