Skip to content

Commit

Permalink
Try to get additional plugins installed
Browse files Browse the repository at this point in the history
  • Loading branch information
tronyx committed May 14, 2024
1 parent 9603358 commit d33c921
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.linux-amd64
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ RUN echo postfix postfix/main_mailer_type string "'Internet Site'" | debconf-set
php-gd \
postfix \
#python2 \
#python3 \
python3-full \
python3-pip \
python3-nagiosplugin \
rsync \
Expand Down Expand Up @@ -220,9 +220,9 @@ RUN cd /tmp && \
# Install additional plugins
RUN cd /opt && \
#wget -q -O get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py && \
wget -q https://bootstrap.pypa.io/get-pip.py && \
#wget -q https://bootstrap.pypa.io/get-pip.py && \
#python2 get-pip.py && \
python3 get-pip.py && \
#python3 get-pip.py && \
#pip install --no-cache-dir "pymssql<2.2.0" && \
pip3 install --no-cache-dir pymssql && \
pip3 install --no-cache-dir --find-links https://wheel-index.linuxserver.io/ubuntu/ pywbem paramiko pplogger paho-mqtt && \
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.linux-arm-v7
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ RUN echo postfix postfix/main_mailer_type string "'Internet Site'" | debconf-set
php-gd \
postfix \
#python2 \
#python3 \
python3-full \
python3-pip \
python3-nagiosplugin \
rsync \
Expand Down Expand Up @@ -229,9 +229,9 @@ RUN cd /opt && \
. "/root/.cargo/env" && \
export PATH="/root/.cargo/bin:$PATH" && \
#wget -q -O get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py && \
wget -q https://bootstrap.pypa.io/get-pip.py && \
#wget -q https://bootstrap.pypa.io/get-pip.py && \
#python2 get-pip.py && \
python3 get-pip.py && \
#python3 get-pip.py && \
echo "Cython==0.29.35" >> constraints.txt && \
export PIP_CONSTRAINT="$(pwd)/constraints.txt" && \
#pip install --no-cache-dir "pymssql<2.2.0" && \
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.linux-arm64
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ RUN echo postfix postfix/main_mailer_type string "'Internet Site'" | debconf-set
php-gd \
postfix \
#python2 \
#python3 \
python3-full \
python3-pip \
python3-nagiosplugin \
rsync \
Expand Down Expand Up @@ -224,9 +224,9 @@ RUN cd /tmp && \
# Install additional plugins
RUN cd /opt && \
#wget -q -O get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py && \
wget -q https://bootstrap.pypa.io/get-pip.py && \
#wget -q https://bootstrap.pypa.io/get-pip.py && \
#python2 get-pip.py && \
python3 get-pip.py && \
#python3 get-pip.py && \
echo "Cython==0.29.35" >> constraints.txt && \
export PIP_CONSTRAINT="$(pwd)/constraints.txt" && \
#pip install --no-cache-dir "pymssql<2.2.0" && \
Expand Down

0 comments on commit d33c921

Please sign in to comment.