Initial commit
This commit is contained in:
commit
8f112c1bb5
69 changed files with 2068 additions and 0 deletions
13
bot/Dockerfile
Normal file
13
bot/Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
FROM python:3.11-alpine
|
||||
|
||||
ENV PYTHONDONTWRITEBYTECODE 1
|
||||
ENV PYTHONUNBUFFERED 1
|
||||
|
||||
COPY requirements.txt /
|
||||
RUN pip3 install --no-cache-dir -r /requirements.txt
|
||||
RUN rm /requirements.txt
|
||||
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
|
||||
CMD ["python3", "bot_listen.py"]
|
Loading…
Add table
Add a link
Reference in a new issue