Merge branch 'ScanPlusGmbH-fix-170'
This commit is contained in:
commit
e32bb272b2
|
@ -16,7 +16,7 @@ RUN apk add --no-cache \
|
||||||
|
|
||||||
WORKDIR /install
|
WORKDIR /install
|
||||||
|
|
||||||
RUN pip install --install-option="--prefix=/install" \
|
RUN pip install --prefix="/install" --install-option="--prefix=/install" \
|
||||||
# gunicorn is used for launching netbox
|
# gunicorn is used for launching netbox
|
||||||
gunicorn \
|
gunicorn \
|
||||||
greenlet \
|
greenlet \
|
||||||
|
@ -30,7 +30,7 @@ RUN pip install --install-option="--prefix=/install" \
|
||||||
|
|
||||||
ARG NETBOX_PATH
|
ARG NETBOX_PATH
|
||||||
COPY ${NETBOX_PATH}/requirements.txt /
|
COPY ${NETBOX_PATH}/requirements.txt /
|
||||||
RUN pip install --install-option="--prefix=/install" -r /requirements.txt
|
RUN pip install --prefix="/install" --install-option="--prefix=/install" -r /requirements.txt
|
||||||
|
|
||||||
###
|
###
|
||||||
# Main stage
|
# Main stage
|
||||||
|
|
Loading…
Reference in New Issue