chore(dev): add containerized local development stack

This commit is contained in:
2026-03-16 14:25:00 +00:00
parent eb0fbf24f0
commit 5c2976b86d
5 changed files with 134 additions and 0 deletions

12
Backend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM oven/bun:1.2-alpine
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile
COPY . .
EXPOSE 3000
CMD ["bun", "run", "dev"]