yt-dlp-bot/app_worker/Dockerfile
Taras Terletskyi 15b2ff9feb Version 1.2.1
2023-03-22 23:24:42 +02:00

16 lines
370 B
Docker

FROM yt-base-image
RUN apk add --no-cache ffmpeg
COPY ./app_worker/requirements.txt ./
RUN apk add --no-cache --virtual .build-deps \
build-base \
&& MAKEFLAGS="-j$(nproc)" pip install --no-cache-dir -r requirements.txt \
&& apk --purge del .build-deps
COPY ./app_worker ./start.py ./
COPY yt_shared /app/yt_shared
RUN pip install -e /app/yt_shared