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

19 lines
452 B
Docker

FROM python:3.11-alpine
RUN apk add --no-cache \
tzdata \
htop \
bash \
libstdc++
WORKDIR /app
COPY ./yt_shared/requirements_shared.txt ./
RUN apk add --no-cache --virtual .build-deps \
build-base \
&& pip install --upgrade pip setuptools wheel \
&& MAKEFLAGS="-j$(nproc)" pip install --no-cache-dir -r requirements_shared.txt \
&& rm requirements_shared.txt \
&& apk --purge del .build-deps