Martin Dimitrov 421a91bc86
All checks were successful
Build and push image for websocket http cache / docker (push) Successful in 9s
add configuration by env var
2024-09-30 11:49:33 -07:00

14 lines
197 B
Docker

FROM oven/bun
ADD src src
ADD bun.lockb bun.lockb
ADD package.json package.json
# install all deps
RUN bun install
WORKDIR /home/bun/app
ENV PORT 8080
# start server
CMD bun run ./src/server.ts