Skip to content

Commit

Permalink
Add DockerFile
Browse files Browse the repository at this point in the history
  • Loading branch information
dvque committed Feb 3, 2024
1 parent 3521895 commit a4480b6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit a4480b6

Please sign in to comment.