Python/docker-compose.yml

9 lines
120 B
YAML

version: "2"
services:
python-app:
build: .
volumes:
- ./app/:/app
entrypoint: [python, script.py]