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

FROM python:3.8.1-alpine3.11
COPY requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt
COPY ./todoist_github /app
CMD ["/app/cli.py"]