diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0492728 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM bun:latest + +WORKDIR /app + +COPY package.json bun.lock ./ +RUN bun install --production + +COPY . . + +EXPOSE 3099 + +CMD ["bun", "run", "start"] diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..e69de29