chore: add docker

This commit is contained in:
2026-05-11 12:43:49 +03:00
parent 7dbbd98312
commit f00551b2d1
2 changed files with 45 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
kyc:
container_name: kyc
build:
context: .
dockerfile: Dockerfile
ports:
- "7000:7000"
environment:
PYTHONUNBUFFERED: "1"
APP_MODULE: "src.main:app"
APP_HOST: "0.0.0.0"
APP_PORT: "8000"
APP_WORKERS: "1"
env_file:
- .env
restart: no