adding dockerfile and requirements

This commit is contained in:
Gaël Honorez
2024-01-01 18:37:57 +01:00
parent 1c34ba7ced
commit 0055a0f9f5
2 changed files with 8 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.8
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD ["python", "./Post_RSS_on_SubStack.py"]