Author SHA1 Message Date
TetrisGGBOBot f70731c5de chore: add docker dev environment 2026-03-16 15:34:21 +00:00
2 changed files with 17 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev", "--", "-H", "0.0.0.0", "-p", "3000"]
+10
View File
@@ -0,0 +1,10 @@
version: '3.8'
services:
taiji-pda-v0:
build: .
container_name: taiji-pda-v0-dev
ports:
- "3000:3000"
env_file:
- .env.example
restart: unless-stopped