15 lines
331 B
Docker
15 lines
331 B
Docker
FROM python:3.9-slim-buster
|
|
|
|
# Установить зависимости для FFmpeg
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends ffmpeg && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python3", "bot.py"] |