ytdl-sub/docker/Dockerfile
Jesse Bannon ead5620c5c
[FEATURE] Add mp3 id3v2.4 multi-tag support (#356)
* [FEATURE] Add mp3 id3v2.4 multi-tag support

* docs

* fix new docker issue

* update fixture
2022-11-24 00:56:23 -08:00

40 lines
883 B
Docker

FROM ghcr.io/linuxserver/baseimage-alpine:3.16
###############################################################################
# YTDL-SUB INSTALL
COPY root/ /
RUN apk update --no-cache && \
apk upgrade --no-cache && \
apk add --repository=http://dl-3.alpinelinux.org/alpine/edge/main/ \
vim \
g++ \
nano \
make \
python3=~3.10 \
py3-pip \
py3-setuptools && \
apk add --repository=http://dl-3.alpinelinux.org/alpine/edge/community/ \
libcrypto1.1 \
libcrypto3 \
libsrt \
ffmpeg && \
mkdir -p /config && \
pip install --no-cache-dir ytdl_sub-*.whl && \
rm ytdl_sub-*.whl && \
apk del \
g++ \
make \
py3-setuptools
###############################################################################
# CONTAINER CONFIGS
ENV EDITOR="nano" \
HOME="/config"
VOLUME /config