mirror of
https://github.com/gabrielkheisa/gemini-resume-checker.git
synced 2025-02-22 08:54:13 +07:00
15 lines
299 B
YAML
15 lines
299 B
YAML
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"]
|
|
|