Init commit

This commit is contained in:
Jemacivan
2022-02-16 17:13:44 +02:00
commit 8060b933a5
42 changed files with 1281 additions and 0 deletions

16
dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM alpine:latest
COPY . /usr/src/bot
WORKDIR /usr/src/bot
RUN apk update \
&& apk add \
build-base \
gcc \
musl-dev \
python3-dev \
py3-pip \
postgresql-dev
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python3", "bot.py"]