tjo.space/api/Dockerfile
Tine Jozelj 274378c858
All checks were successful
ci / docker (api) (push) Successful in 2m16s
ci / docker (web) (push) Successful in 4m47s
fix: path
2023-09-11 15:04:00 +02:00

11 lines
133 B
Docker

FROM oven/bun
ADD package.json package.json
ADD bun.lockb bun.lockb
RUN bun install
ADD src src
CMD bun src/index.ts
EXPOSE 3003