Initial commit of code

This commit is contained in:
Oliver Traber 2023-06-25 00:50:23 +02:00
parent 432bc5a95d
commit 296db66e28
Signed by: Bluemedia
GPG key ID: C0674B105057136C
5 changed files with 173 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM python:3.11
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
VOLUME ["/data"]
ENV DB_PATH="/data/bot.db"
CMD [ "python", "./bot.py" ]