This commit is contained in:
2023-09-11 23:08:55 +03:00
parent bab62ae93c
commit 64bfa31100
2 changed files with 4 additions and 5 deletions

View File

@@ -2,6 +2,5 @@ FROM python:3.11-slim
WORKDIR /app
COPY . /app
COPY requirements.txt /app/
RUN apt-get update && apt-get install -y git build-essential libffi-dev libssl-dev
RUN pip install --trusted-host pypi.python.org -r /app/requirements.txt
RUN pip install -r /app/requirements.txt
CMD ["python", "bot/main.py"]