Updated path to pip in python virtual environment

dataolle 2021-01-29 14:06:36 +01:00
parent babb8d6177
commit 572067ded0

@ -34,7 +34,7 @@ The new `Dockerfile-Plugins` will enable us to build a new image with the requir
FROM netboxcommunity/netbox:latest
copy ./plugin_requirements.txt /
RUN pip install --no-warn-script-location -r /plugin_requirements.txt
RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /plugin_requirements.txt
```
> NOTE: You can swap the image out to use any of the images that the Netbox-Docker community publishes to [Docker Hub](https://hub.docker.com/r/netboxcommunity/netbox/tags). For example if LDAP is required, swap out `netboxcommunity/netbox:latest` for `netboxcommunity/netbox:latest-ldap`.