mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-12-10 22:02:37 +00:00
7 lines
329 B
Plaintext
7 lines
329 B
Plaintext
FROM netboxcommunity/netbox:latest
|
|
|
|
RUN set -x \
|
|
&& source /opt/netbox/venv/bin/activate \
|
|
&& SITEDIR=$(/opt/netbox/venv/bin/python3 -c 'import site; print(site.getsitepackages()[0])') \
|
|
&& pip install netbox-topology-views \
|
|
&& cp -r $SITEDIR/netbox_topology_views/static/netbox_topology_views /opt/netbox/netbox/static/ |