fix new docker issue
This commit is contained in:
parent
1142197ec8
commit
ca3bb12614
1 changed files with 6 additions and 2 deletions
|
|
@ -5,16 +5,20 @@ FROM ghcr.io/linuxserver/baseimage-alpine:3.16
|
||||||
|
|
||||||
COPY root/ /
|
COPY root/ /
|
||||||
RUN apk update --no-cache && \
|
RUN apk update --no-cache && \
|
||||||
|
apk upgrade --no-cache && \
|
||||||
apk add --repository=http://dl-3.alpinelinux.org/alpine/edge/main/ \
|
apk add --repository=http://dl-3.alpinelinux.org/alpine/edge/main/ \
|
||||||
vim \
|
vim \
|
||||||
g++ \
|
g++ \
|
||||||
nano \
|
nano \
|
||||||
make \
|
make \
|
||||||
python3=~3.10 \
|
python3=~3.10 \
|
||||||
|
py3-pip \
|
||||||
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 \
|
libcrypto1.1 \
|
||||||
py3-pip && \
|
libcrypto3 \
|
||||||
|
libsrt \
|
||||||
|
ffmpeg && \
|
||||||
mkdir -p /config && \
|
mkdir -p /config && \
|
||||||
pip install --no-cache-dir ytdl_sub-*.whl && \
|
pip install --no-cache-dir ytdl_sub-*.whl && \
|
||||||
rm ytdl_sub-*.whl && \
|
rm ytdl_sub-*.whl && \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue