summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 10ced2a706859c0142c275cdeb25b9d14ee164c1 (plain)
1
2
3
4
5
6
FROM oven/bun
COPY . /app
WORKDIR /app/
RUN bun install
RUN bun test
CMD bun run /app/index.ts