12 lines
284 B
YAML
12 lines
284 B
YAML
services:
|
|
csv-editor:
|
|
image: python:3.13-slim
|
|
container_name: finance-csv-editor
|
|
working_dir: /app
|
|
ports:
|
|
- "5678:5000"
|
|
volumes:
|
|
- .:/app
|
|
restart: always
|
|
command: >
|
|
sh -c "pip install --no-cache-dir -r requirements.txt && python app.py" |