Update Dockerfile

This commit is contained in:
Raymond Kuiper 2025-02-20 11:42:25 +01:00 committed by GitHub
parent 48a04c58e3
commit 825d788cfe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,12 @@
# syntax=docker/dockerfile:1
FROM python:3.12-alpine
LABEL org.opencontainers.image.source=https://github.com/TheNetworkGuy/netbox-zabbix-sync
LABEL org.opencontainers.image.title="NetBox-Zabbix-Sync"
LABEL org.opencontainers.image.description="Python script to synchronise NetBox devices to Zabbix."
LABEL org.opencontainers.image.documentation=https://github.com/TheNetworkGuy/netbox-zabbix-sync/
LABEL org.opencontainers.image.licenses=MIT
LABEL org.opencontainers.image.authors="Twan Kamans"
RUN mkdir -p /opt/netbox-zabbix
COPY . /opt/netbox-zabbix
WORKDIR /opt/netbox-zabbix