mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2025-12-10 05:42:36 +00:00
7 lines
464 B
Plaintext
7 lines
464 B
Plaintext
FROM netboxcommunity/netbox:latest
|
|
COPY ./plugin_requirements.txt /opt/netbox/
|
|
RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /opt/netbox/plugin_requirements.txt
|
|
COPY configuration/configuration.py /etc/netbox/config/configuration.py
|
|
COPY configuration/plugins.py /etc/netbox/config/plugins.py
|
|
RUN SECRET_KEY="dummydummydummydummydummydummydummydummydummydummy" /opt/netbox/venv/bin/python /opt/netbox/netbox/manage.py collectstatic --no-input
|