added docker-compose to project

This commit is contained in:
Fred Warren 2021-03-10 11:32:10 -08:00
parent df20bb7680
commit 8a6c2dffd5

8
docker-compose.yml Normal file
View File

@ -0,0 +1,8 @@
version: "2"
services:
python-app:
build: .
volumes:
- ./app/:/app
entrypoint: [python, script.py]