10 lines
134 B
Docker
10 lines
134 B
Docker
|
FROM python:3-alpine
|
||
|
|
||
|
COPY requirements.txt /app/
|
||
|
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
COPY . /app
|
||
|
|
||
|
CMD python /app/gitea-to-ics.py
|