add dockerfile

This commit is contained in:
Chan
2025-01-10 15:17:36 +09:00
parent ab9e7bf220
commit 4e2ba1bf9e
4 changed files with 40 additions and 1 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: "3.8"
services:
whisper-app:
build:
context: .
dockerfile: Dockerfile
environment:
- NODE_ENV=production
ports:
- "8899:8899"
volumes:
- ".:/opt/workspace"
- "/node_modules"
entrypoint: yarn start --port 8899