welcomecenterbot/Dockerfile
2023-09-11 23:04:53 +03:00

7 lines
259 B
Docker

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
CMD ["python", "bot/main.py"]