8 lines
250 B
Docker
8 lines
250 B
Docker
FROM python:3.8-slim-buster
|
|
WORKDIR /bot
|
|
COPY requirements.txt .
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg; \
|
|
rm -rf /var/lib/apt/lists/*;
|
|
RUN pip3 install -U youtube-dl
|
|
RUN pip3 install -r requirements.txt
|
|
COPY src src |