diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8a0e8dc --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.9-slim-buster + +COPY requirements.txt ./ +RUN pip install -r requirements.txt + +ARG GIT_HASH +ENV GIT_HASH=${GIT_HASH:-dev} + +COPY . . + +CMD ["python", "wren/core.py"] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index b9dc233..ab527a0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,3 +14,4 @@ six==1.16.0 telebot==0.0.5 tzlocal==5.2 urllib3==2.1.0 +todoist-api-python==2.1.3 \ No newline at end of file