From 585478c3f39afa8317e5aa45a4052aea61972418 Mon Sep 17 00:00:00 2001 From: Damyan Yordanov Date: Thu, 26 Sep 2024 09:10:59 +0200 Subject: [PATCH] Fix linter issue in docker file Set "as" keyword upper case, as it should be --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 04ac063..a6f2da7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \ --mount=type=cache,target=/go/pkg \ CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH GO111MODULE=on go build -ldflags="-s -w" -a -o fedhcp main.go -FROM debian:stable as installer +FROM debian:stable AS installer RUN apt-get update \ && apt-get -y install --no-install-recommends libcap2-bin \