chore(dev): add containerized local development stack
This commit is contained in:
9
Backend/.dockerignore
Normal file
9
Backend/.dockerignore
Normal file
@@ -0,0 +1,9 @@
|
||||
.git
|
||||
.gitignore
|
||||
node_modules
|
||||
dist
|
||||
coverage
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
*.log
|
||||
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