add Dockerfile

This commit is contained in:
Constantin Simonis 2025-02-05 11:50:23 +01:00
parent 7fe8f276cf
commit 33f6bcedb1
No known key found for this signature in database
GPG key ID: 758DD9C506603183
2 changed files with 9 additions and 31 deletions

View file

@ -0,0 +1,9 @@
FROM oven/bun:1 AS base
USER root
WORKDIR /usr/src/app
COPY .. /usr/src/app
RUN bun install
EXPOSE 3000/tcp
ENTRYPOINT [ "bun", "start" ]