diff --git a/captain b/captain new file mode 100644 index 0000000..f6d25f7 --- /dev/null +++ b/captain @@ -0,0 +1,4 @@ +{ + "schemaVersion": 2, + "dockerfilePath": "./docker" +} \ No newline at end of file diff --git a/docker b/docker new file mode 100644 index 0000000..fa1dc1d --- /dev/null +++ b/docker @@ -0,0 +1,10 @@ +FROM python:3 +ADD main.py / +ADD database.py / +ADD Feed.py / + + +RUN pip install requirements.txt + + +CMD ["python", "./main.py"] \ No newline at end of file