File size: 193 Bytes
fbf9270
df7dcea
fbf9270
df7dcea
f259196
fbf9270
 
 
 
1
2
3
4
5
6
7
8
9
FROM oven/bun:1
WORKDIR /app
COPY package.json schema.prisma ./
RUN bun install
RUN bunx prisma generate
COPY . .
ENV DATABASE_URL=${DATABASE_URL}
EXPOSE 7860
CMD ["bun", "run", "src/index.ts"]