All checks were successful
Build and push image for websocket http cache / docker (push) Successful in 16s
12 lines
182 B
Docker
12 lines
182 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
|
|
|
|
# start server
|
|
CMD bun run ./src/server.ts |