From 66406a5d451d25385fcedf005f3b43e9988d3ca8 Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:17:30 -0500 Subject: [PATCH] chore: fix export syntax (#10973) --- internal/postprocessor/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/postprocessor/Dockerfile b/internal/postprocessor/Dockerfile index 0a606957c9b8..03c4859cd777 100644 --- a/internal/postprocessor/Dockerfile +++ b/internal/postprocessor/Dockerfile @@ -22,7 +22,7 @@ WORKDIR /postprocessor RUN CGO_ENABLED=0 GOOS=linux go build -v -o post_processor # Install tools used in build -RUN (export=GOTOOLCHAIN='auto' && \ +RUN (export GOTOOLCHAIN='auto' && \ go install honnef.co/go/tools/cmd/staticcheck@latest && \ go install github.com/jstemmer/go-junit-report@latest && \ go install golang.org/x/lint/golint@latest && \