mirror of
https://github.com/netbox-community/netbox-docker.git
synced 2026-03-22 08:16:54 +00:00
12 lines
418 B
Plaintext
12 lines
418 B
Plaintext
# Dockerfile-plugins
|
|
ARG FROM_TAG=v4.4-3
|
|
FROM ghcr.io/netbox-community/netbox:${FROM_TAG}-plugins
|
|
|
|
# Systemabhängigkeit: pip ins venv holen
|
|
RUN python -m ensurepip && \
|
|
/opt/netbox/venv/bin/python -m pip install --upgrade pip
|
|
|
|
# Plugins installieren
|
|
COPY requirements-plugins.txt /plugins/requirements-plugins.txt
|
|
RUN /opt/netbox/venv/bin/python -m pip install --no-cache-dir -r /plugins/requirements-plugins.txt
|