This commit is contained in:
Jesse Bannon 2022-11-24 11:11:45 -08:00
parent 7d8668d927
commit b2923c5673

View file

@ -16,7 +16,12 @@ RUN apk update --no-cache && \
py3-pip \ py3-pip \
py3-setuptools && \ py3-setuptools && \
mkdir -p /config && \ mkdir -p /config && \
# Ensure ffmpeg is installed property
ffmpeg -version && \
# Install ytdl-sub, ensure it is installed propertly
pip install --no-cache-dir ytdl_sub-*.whl && \ pip install --no-cache-dir ytdl_sub-*.whl && \
ytdl-sub -h && \
# Delete unneeded packages after install
rm ytdl_sub-*.whl && \ rm ytdl_sub-*.whl && \
apk del \ apk del \
g++ \ g++ \