Skip to content

Commit b0f0c37

Browse files
committed
Different pip install approach
1 parent 838c019 commit b0f0c37

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN \
4747
python3 -m ensurepip && \
4848
rm -rf /usr/lib/python*/ensurepip && \
4949
cd /app/netbox && \
50-
pip3 install --no-cache-dir -U pip \
50+
/usr/bin/python3 -m pip install --upgrade pip \
5151
pip3 install --no-cache-dir wheel && \
5252
pip3 install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
5353
echo "**** cleanup ****" && \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN \
4747
python3 -m ensurepip && \
4848
rm -rf /usr/lib/python*/ensurepip && \
4949
cd /app/netbox && \
50-
pip3 install --no-cache-dir -U pip \
50+
/usr/bin/python3 -m pip install --upgrade pip \
5151
pip3 install --no-cache-dir wheel && \
5252
pip3 install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
5353
echo "**** cleanup ****" && \

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ RUN \
4747
python3 -m ensurepip && \
4848
rm -rf /usr/lib/python*/ensurepip && \
4949
cd /app/netbox && \
50-
pip3 install --no-cache-dir -U pip \
50+
/usr/bin/python3 -m pip install --upgrade pip \
5151
pip3 install --no-cache-dir wheel && \
5252
pip3 install --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ -r requirements.txt && \
5353
echo "**** cleanup ****" && \

0 commit comments

Comments
 (0)