diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d29a013 --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..7189d4d --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +requests +feedparser +python-substack \ No newline at end of file