Committed version 3 of the bot from the source code on my computer. Older versions of the bot were version controlled manually before I knew how to use Git.

This commit is contained in:
2021-07-06 14:09:06 +01:00
parent eae07b923d
commit 2f10edc3f9
37 changed files with 39162 additions and 2 deletions

7
posting/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.8.6-buster
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
RUN python -m nltk.downloader all
CMD python3 -u ./script.py