tjo.space/api/Dockerfile
Tine Jozelj 41a87ebf16
Some checks failed
ci / docker (api) (push) Successful in 2m33s
ci / docker (web) (push) Failing after 2m45s
feat: restructure, use bun and add api
2023-09-11 14:02:23 +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.js
EXPOSE 3003