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

View file

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

View file

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