mirror of https://github.com/Hoffelhas/autodoist
11 lines
180 B
Docker
11 lines
180 B
Docker
|
FROM python:3-slim-bullseye
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY requirements.txt ./
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
ENTRYPOINT [ "python", "./autodoist.py" ]
|