boring.tools-poc/ci/docker/api/Dockerfile
Lars Hampe 6f0d9fe925
All checks were successful
Build and Push Docker Image / build (push) Successful in 47s
ci: add Dockerfile and docker build for api
2024-09-28 21:10:51 +02:00

12 lines
135 B
Docker

FROM oven/bun:1
COPY ./build/api .
ENV HOST=0.0.0.0
ENV PORT=3000
USER bun
EXPOSE 3000/tcp
ENTRYPOINT [ "bun", "run", "index.js" ]