gemini-resume-checker/docker-compose.yml

15 lines
299 B
YAML
Raw Permalink Normal View History

2025-02-12 19:10:04 +07:00
version: '3.8'
services:
resume_summarizer:
build: .
container_name: resume_summarizer_container
ports:
- "5000:5000"
env_file:
- .env # Loads environment variables from .env
volumes:
- .:/app
command: ["flask", "run", "--host=0.0.0.0", "--port=5000"]
2025-02-12 01:05:18 +07:00