We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 51741ed + 6903f3a commit 496744bCopy full SHA for 496744b
tests/Dockerfile
@@ -1,5 +1,5 @@
1
# Stage 1: Build the Go plugin using Goreleaser
2
-FROM goreleaser/goreleaser:v2.3.0-amd64 as go
+FROM goreleaser/goreleaser:v2.3.0-amd64 AS go
3
4
WORKDIR /plugin
5
@@ -8,7 +8,7 @@ COPY . .
8
RUN goreleaser build --clean --skip=validate --config .goreleaser-test.yml
9
10
# Stage 2: Lint the plugin using Buildkite plugin-linter
11
-FROM buildkite/plugin-linter:latest as linter
+FROM buildkite/plugin-linter:latest AS linter
12
13
14
@@ -19,7 +19,7 @@ COPY --from=go /plugin /plugin
19
RUN plugin-linter --id buildkite-plugins/monorepo-diff
20
21
# Stage 3: Final image for testing the plugin
22
-FROM golang:1.20 as test-stage
+FROM golang:1.22.12 AS test-stage
23
24
25
0 commit comments