We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7b526e + f9662a1 commit 8d71d2fCopy full SHA for 8d71d2f
Dockerfile
@@ -16,7 +16,7 @@ RUN apk add --no-cache \
16
17
WORKDIR /install
18
19
-RUN pip install --prefix="/install" --install-option="--prefix=/install" \
+RUN pip install --prefix="/install" --no-warn-script-location \
20
# gunicorn is used for launching netbox
21
gunicorn \
22
greenlet \
@@ -30,7 +30,7 @@ RUN pip install --prefix="/install" --install-option="--prefix=/install" \
30
31
ARG NETBOX_PATH
32
COPY ${NETBOX_PATH}/requirements.txt /
33
-RUN pip install --prefix="/install" --install-option="--prefix=/install" -r /requirements.txt
+RUN pip install --prefix="/install" --no-warn-script-location -r /requirements.txt
34
35
###
36
# Main stage
0 commit comments