Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Dockerfile 344 B
Newer Older
FROM netboxcommunity/netbox:v3.6.9-2.7.0
RUN mkdir /opt/netbox/plugins
Vincent SIMONIN's avatar
Vincent SIMONIN committed
COPY requirements.txt /opt/netbox/plugins
COPY netbox_configuration/plugins.py /etc/netbox/config/plugins.py
COPY netbox_configuration/extra.py /etc/netbox/config/extra.py
Vincent SIMONIN's avatar
Vincent SIMONIN committed
RUN pip install -r /opt/netbox/plugins/requirements.txt

RUN rm -rf /opt/netbox/plugins