diff --git a/Using-Netbox-Plugins.md b/Using-Netbox-Plugins.md index e768ff1..0139e00 100644 --- a/Using-Netbox-Plugins.md +++ b/Using-Netbox-Plugins.md @@ -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`.