Update Dockerfile

switched to debian bullseye
This commit is contained in:
Malte Grosse 2022-04-04 23:01:13 +02:00 committed by GitHub
parent ea96f504c8
commit 27de4f3b1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ RUN mkdir -p /root/go/src
COPY dyndns /root/go/src/dyndns
RUN cd /root/go/src/dyndns && go mod download && GOOS=linux go build -o /root/go/bin/dyndns && go test -v
FROM debian:buster-slim
FROM debian:bullseye-slim
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
apt-get install -q -y bind9 dnsutils curl && \