Skip to content

Commit e41fde8

Browse files
committed
make: fix docker warnings
These fixes stop Docker from warning about the deprecated MAINTAINER instruction and legacy key/value format.
1 parent 197f50b commit e41fde8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

make/builder.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM golang:1.24.9-bookworm@sha256:737b40b61ce956d738bed59f18ba854d8d67e7a4c4fa63f64437f4c70247ac5b
22

3-
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>
3+
LABEL maintainer="Olaoluwa Osuntokun <laolu@lightning.engineering>"
44

55
# Golang build related environment variables that are static and used for all
66
# architectures/OSes.
7-
ENV GODEBUG netdns=cgo
7+
ENV GODEBUG=netdns=cgo
88
ENV CGO_ENABLED=0
99

1010
# Set up cache directories. Those will be mounted from the host system to speed

0 commit comments

Comments
 (0)