From c18a3a075e0e36490278b5ecb38c4ecea685d4ae Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 26 Feb 2020 15:40:11 +0100 Subject: [PATCH] Dockerfile: switch to debian "buster" Debian Buster is now the current "stable", and will be the default baseimage for Golang images going forward. Signed-off-by: Sebastiaan van Stijn --- libnetwork/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnetwork/Dockerfile b/libnetwork/Dockerfile index 42105dfa9c..2dddbbff23 100644 --- a/libnetwork/Dockerfile +++ b/libnetwork/Dockerfile @@ -1,6 +1,6 @@ ARG GO_VERSION=1.12.12 -FROM golang:${GO_VERSION}-stretch as dev +FROM golang:${GO_VERSION}-buster as dev RUN apt-get update && apt-get -y install iptables \ protobuf-compiler