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