7 lines
259 B
Docker
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"] |