initial framework

This commit is contained in:
2023-04-19 23:38:09 +02:00
parent fbb90357c5
commit 6570de995d
11 changed files with 309 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.10
ENV dockerized=true
WORKDIR /app
COPY Pipfile Pipfile.lock ./
RUN pip install pipenv && pipenv install --system --deploy
COPY bot .
CMD ["python", "main.py"]