This reverts commit 7b43aa904b.
This commit is contained in:
parent
7b43aa904b
commit
1fa3aa5967
1 changed files with 8 additions and 5 deletions
|
|
@ -1,19 +1,23 @@
|
||||||
FROM ghcr.io/linuxserver/baseimage-alpine:3.16
|
FROM ghcr.io/linuxserver/baseimage-alpine:3.15
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# YTDL-SUB INSTALL
|
# YTDL-SUB INSTALL
|
||||||
|
|
||||||
COPY root/ /
|
COPY root/ /
|
||||||
RUN apk update --no-cache && \
|
RUN apk update --no-cache && \
|
||||||
apk add --repository=http://dl-3.alpinelinux.org/alpine/edge/main/ \
|
apk add \
|
||||||
vim \
|
vim \
|
||||||
g++ \
|
g++ \
|
||||||
nano \
|
nano \
|
||||||
make \
|
make \
|
||||||
|
ffmpeg && \
|
||||||
|
apk del \
|
||||||
|
python3 \
|
||||||
|
py3-pip && \
|
||||||
|
apk add --repository=http://dl-3.alpinelinux.org/alpine/edge/main/ \
|
||||||
python3=~3.10 \
|
python3=~3.10 \
|
||||||
py3-setuptools && \
|
py3-setuptools && \
|
||||||
apk add --repository=http://dl-3.alpinelinux.org/alpine/edge/community/ \
|
apk add --repository=http://dl-3.alpinelinux.org/alpine/edge/community/ \
|
||||||
ffmpeg \
|
|
||||||
py3-pip && \
|
py3-pip && \
|
||||||
mkdir -p /config && \
|
mkdir -p /config && \
|
||||||
pip install --no-cache-dir ytdl_sub-*.whl && \
|
pip install --no-cache-dir ytdl_sub-*.whl && \
|
||||||
|
|
@ -21,8 +25,7 @@ RUN apk update --no-cache && \
|
||||||
apk del \
|
apk del \
|
||||||
g++ \
|
g++ \
|
||||||
make \
|
make \
|
||||||
py3-setuptools \
|
py3-setuptools
|
||||||
py3-pip
|
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# CONTAINER CONFIGS
|
# CONTAINER CONFIGS
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue