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

Skip to content
Snippets Groups Projects
Dockerfile 449 B
Newer Older
Vehbo DZOGOVIC's avatar
Vehbo DZOGOVIC committed
FROM netboxcommunity/netbox:v3.5-2.6.1

USER root
RUN apt-get update && \
    apt-get install -y --no-install-recommends \
        gcc \
        libpq-dev \
        python3-dev \
        python3-venv \
        && \
    rm -rf /var/lib/apt/lists/*

Vincent SIMONIN's avatar
Vincent SIMONIN committed
COPY ./plugins /opt/netbox/plugins
COPY requirements.txt /opt/netbox/plugins
COPY netbox_configuration/plugins.py /etc/netbox/config/plugins.py
Vincent SIMONIN's avatar
Vincent SIMONIN committed
RUN pip install -r /opt/netbox/plugins/requirements.txt