Files
Substack_JV/Dockerfile
2024-01-01 18:39:55 +01:00

6 lines
217 B
Docker

FROM python:3.8
RUN apt-get update && apt-get install -y git
RUN git clone http://192.168.1.25:8124/zep/Substack_JV.git /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD ["python", "./Post_RSS_on_SubStack.py"]