This commit is contained in:
Jesse Bannon 2023-03-24 11:08:34 -07:00
parent 14e4a4b563
commit 364042946c
3 changed files with 6 additions and 4 deletions

View file

@ -12,7 +12,7 @@ RUN mkdir -p /config && \
g++ \
nano \
make \
python3=~3.10 \
"python3>=3.10" \
py3-pip \
fontconfig \
py3-setuptools && \
@ -30,13 +30,14 @@ RUN mkdir -p /config && \
cd -; \
fi && \
# Install ytdl-sub, ensure it is installed properly
pip install --no-cache-dir ytdl_sub-*.whl && \
python3 -m pip install --no-cache-dir ytdl_sub-*.whl && \
ytdl-sub -h && \
# Delete unneeded packages after install
rm ytdl_sub-*.whl && \
apk del \
g++ \
make \
py3-pip \
py3-setuptools
###############################################################################

View file

@ -15,6 +15,7 @@ classifiers =
License :: Public Domain
Environment :: Console
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options.entry_points]
console_scripts =

View file

@ -1,2 +1,2 @@
__pypi_version__ = "2023.03.24.post4"
__local_version__ = "2023.03.24+90d6f71"
__pypi_version__ = "2023.03.24.post7"
__local_version__ = "2023.03.24+14e4a4b"