Skip to content

Commit a89c129

Browse files
committed
feat: add docker file
1 parent 4dc130f commit a89c129

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM oven/bun:slim
2+
3+
WORKDIR /app
4+
5+
COPY package*.json ./
6+
7+
RUN bun install
8+
9+
COPY src ./src
10+
COPY tsconfig.json ./
11+
12+
EXPOSE 4141
13+
14+
ENV NODE_ENV=production
15+
16+
CMD ["bun", "run", "start"]

0 commit comments

Comments
 (0)