diff --git a/README.md b/README.md index 867a791..3a9478e 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ ## Known Issues -- WARNING: This plugin is only tested with Netbox 3.2 at this time. +- WARNING: This plugin is only tested with a single Netbox version at this time. - CSV/Bulk imports for SoftwareProduct, Version and Installation are currently broken (WIP) ## Installation Guide @@ -33,7 +33,7 @@ to install the Netbox SLM plugin: 3. Create a ``Dockerfile-SLM`` with contents: ``` - FROM netboxcommunity/netbox:v3.2.X + FROM netboxcommunity/netbox:vX.Y.Z COPY ./plugin_requirements.txt / RUN /opt/netbox/venv/bin/pip install --no-warn-script-location -r /plugin_requirements.txt diff --git a/ci/Dockerfile b/ci/Dockerfile index 8ed7350..57e3308 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,4 +1,4 @@ -ARG PYTHON_VERSION=3.9 +ARG PYTHON_VERSION=3.10 FROM python:${PYTHON_VERSION}-alpine AS compile-image WORKDIR /build @@ -10,7 +10,7 @@ COPY ../ /build RUN python setup.py sdist RUN pip install --no-index /build -FROM netboxcommunity/netbox:v3.2.3 +FROM netboxcommunity/netbox:v3.4.7 -ARG PYTHON_VERSION=3.9 +ARG PYTHON_VERSION=3.10 COPY --from=compile-image /opt/netbox/venv/lib/python${PYTHON_VERSION}/site-packages/netbox_slm /opt/netbox/venv/lib/python${PYTHON_VERSION}/site-packages/netbox_slm diff --git a/ci/Dockerfile-CI b/ci/Dockerfile-CI index a830662..6ca4687 100644 --- a/ci/Dockerfile-CI +++ b/ci/Dockerfile-CI @@ -1,3 +1,3 @@ -FROM netboxcommunity/netbox:v3.2.3 +FROM netboxcommunity/netbox:v3.4.7 COPY ../netbox_slm /opt/netbox/netbox/netbox_slm