Remove unused apk packages

This commit is contained in:
jbannon 2022-05-31 00:14:26 +00:00
parent 4f64089e22
commit 7644b7651d

View file

@ -4,14 +4,11 @@ FROM ghcr.io/linuxserver/baseimage-alpine:3.15
# YTDL-SUB INSTALL
COPY root/ /
RUN apk update && \
RUN apk update --no-cache && \
apk add \
vim \
gcc \
g++ \
make \
libffi-dev \
openssl-dev \
ffmpeg && \
apk del \
python3 \
@ -23,7 +20,10 @@ RUN apk update && \
py3-pip && \
mkdir -p /config && \
pip install --no-cache-dir ytdl_sub-*.whl && \
rm ytdl_sub-*.whl
rm ytdl_sub-*.whl && \
apk del \
g++ \
make
###############################################################################
# CONTAINER CONFIGS