Updated Dockerfile
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 28s

Updated baseimage to Debian Bookworm ans added labels.
This commit is contained in:
2026-02-02 22:52:38 +01:00
parent 824b5692a3
commit e0b961669b

View File

@@ -1,5 +1,11 @@
FROM debian:bullseye-slim
MAINTAINER Christian Busch <hello@chbus.ch>
FROM debian:bookworm-slim
LABEL org.opencontainers.image.title="NSD Docker"
LABEL org.opencontainers.image.description="NSD (Name Server Daemon) in a Docker container"
LABEL org.opencontainers.image.source="https://git.debilux.org/chris/docker-nsd"
LABEL org.opencontainers.image.url="https://git.debilux.org/chris/docker-nsd"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.authors="Christian Busch <hello@chbus.ch>"
# Install NSD and required tools
RUN apt-get update && \