Skip to content
This repository was archived by the owner on Aug 25, 2023. It is now read-only.

Commit 96d8d54

Browse files
committed
Install pip on arm
1 parent f1c35fb commit 96d8d54

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ RUN \
2525
libffi \
2626
libressl \
2727
python2 && \
28-
curl -o /tmp/get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py && \
28+
# install pip
29+
curl -o /tmp/get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py && \
2930
python /tmp/get-pip.py && \
3031
# install nntp2nntp via pip package manager
3132
if [ -z ${NNTP2NNTP_RELEASE+x} ]; then \

Dockerfile.aarch64

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ RUN \
2525
libffi \
2626
libressl \
2727
python2 && \
28+
# install pip
29+
curl -o /tmp/get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py && \
30+
python /tmp/get-pip.py && \
2831
# install nntp2nntp via pip package manager
2932
if [ -z ${NNTP2NNTP_RELEASE+x} ]; then \
3033
NNTP2NNTP_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/nntp2nntp/releases/latest" \

Dockerfile.armhf

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ RUN \
2525
libffi \
2626
libressl \
2727
python2 && \
28+
# install pip
29+
curl -o /tmp/get-pip.py https://bootstrap.pypa.io/pip/2.7/get-pip.py && \
30+
python /tmp/get-pip.py && \
2831
# install nntp2nntp via pip package manager
2932
if [ -z ${NNTP2NNTP_RELEASE+x} ]; then \
3033
NNTP2NNTP_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/nntp2nntp/releases/latest" \

0 commit comments

Comments
 (0)