@@ -77,7 +77,7 @@ RUN mkdir -p /tmp/gotestsum \
7777# go linting: (this package should NOT be installed via go get)
7878# https://github.com/golangci/golangci-lint#binary
7979# https://github.com/golangci/golangci-lint/releases
80- RUN && GOLANG_CI_LINT_VERSION="1.64.8" \
80+ RUN GOLANG_CI_LINT_VERSION="1.64.8" \
8181 && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
8282 | sh -s -- -b $(go env GOPATH)/bin v${GOLANG_CI_LINT_VERSION}
8383
@@ -165,7 +165,7 @@ ENV PATH $PATH:$GOBIN
165165# --- Purpose: Statically built binaries and CI environment
166166# ## -----------------------
167167
168- FROM development as builder
168+ FROM development AS builder
169169WORKDIR /app
170170COPY Makefile /app/Makefile
171171COPY --chmod=0755 rksh /app/rksh
@@ -188,7 +188,7 @@ RUN make go-build
188188# https://github.com/GoogleContainerTools/distroless/blob/master/base/README.md
189189# The :debug image provides a busybox shell to enter (base-debian10 only, not static).
190190# https://github.com/GoogleContainerTools/distroless#debug-images
191- FROM gcr.io/distroless/base-debian12:debug as app
191+ FROM gcr.io/distroless/base-debian12:debug AS app
192192
193193# FROM debian:buster-slim as app
194194# RUN apt-get update \
0 commit comments