ensure we keep pip

This commit is contained in:
Jesse Bannon 2025-09-27 16:06:32 -07:00
parent a39432220f
commit 890b407938
3 changed files with 10 additions and 2 deletions

View file

@ -55,6 +55,10 @@ RUN mkdir -pv "${DEFAULT_WORKSPACE}" && \
g++ \ g++ \
make \ make \
libffi-dev libffi-dev
&& \
# Ensure we did not delete pip, which is needed for yt-dlp updates
python3 -m pip --help
############################################################################### ###############################################################################
# CONTAINER CONFIGS # CONTAINER CONFIGS

View file

@ -78,7 +78,9 @@ RUN mkdir -p /config && \
python3-venv && \ python3-venv && \
apt-get autoremove -y && \ apt-get autoremove -y && \
apt-get purge -y --auto-remove && \ apt-get purge -y --auto-remove && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/* && \
# Ensure we did not delete pip, which is needed for yt-dlp updates
python3 -m pip --help
############################################################################### ###############################################################################
# CONTAINER CONFIGS # CONTAINER CONFIGS

View file

@ -81,7 +81,9 @@ RUN mkdir -pv "${DEFAULT_WORKSPACE}" && \
python3-venv && \ python3-venv && \
apt-get autoremove -y && \ apt-get autoremove -y && \
apt-get purge -y --auto-remove && \ apt-get purge -y --auto-remove && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/* && \
# Ensure we did not delete pip, which is needed for yt-dlp updates
python3 -m pip --help
############################################################################### ###############################################################################
# CONTAINER CONFIGS # CONTAINER CONFIGS