Skip to content

Commit

Permalink
dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
evantahler committed Mar 19, 2024
1 parent 187136e commit e14cde8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM oven/bun:1 as base
WORKDIR /usr/src/app

ENV NODE_ENV=production

COPY . .
RUN bun install

EXPOSE 3000/tcp
ENTRYPOINT [ "bun", "run", "index.ts" ]

0 comments on commit e14cde8

Please sign in to comment.