archive
/
todoist-github
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
todoist-github/Dockerfile

9 lines
164 B
Docker
Raw Normal View History

2020-01-08 20:22:40 +00:00
FROM python:3.8.1-alpine3.11
COPY requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt
2020-01-08 22:38:40 +00:00
COPY ./todoist_github /app
2020-01-08 20:22:40 +00:00
CMD ["/app/cli.py"]