diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a97dad6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM oven/bun:0.6.13 +WORKDIR /app +COPY package.json package.json +COPY bun.lockb bun.lockb +RUN bun install +COPY . . +EXPOSE 3000 +ENTRYPOINT ["bun", "run", "src/api/index.ts"] \ No newline at end of file