chore(dev): add containerized local development stack
This commit is contained in:
12
Backend/Dockerfile
Normal file
12
Backend/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user