aboutsummaryrefslogtreecommitdiff
path: root/web/Dockerfile
blob: e021df4a9ee85820031f83270d62156f54f4db54 (plain) (blame)
1
2
3
4
5
6
7
8
9
FROM oven/bun:latest

WORKDIR /web

COPY . .

RUN bun run build

ENTRYPOINT ["bun", "run", "/web/dist/server/entry.mjs"]