You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+10-8Lines changed: 10 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
-
# syntax = docker/dockerfile-upstream:1.20.0-labs
1
+
# syntax = docker/dockerfile-upstream:1.23.0-labs
2
2
3
3
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
4
4
#
5
-
# Generated on 2026-01-12T10:23:28Z by kres 0e8da31.
5
+
# Generated on 2026-04-28T10:33:12Z by kres e4dc583.
6
6
7
7
ARG TOOLCHAIN=scratch
8
8
9
-
FROM ghcr.io/siderolabs/ca-certificates:v1.12.0 AS image-ca-certificates
9
+
FROM ghcr.io/siderolabs/ca-certificates:v1.13.0 AS image-ca-certificates
10
10
11
-
FROM ghcr.io/siderolabs/fhs:v1.12.0 AS image-fhs
11
+
FROM ghcr.io/siderolabs/fhs:v1.13.0 AS image-fhs
12
12
13
13
# runs markdownlint
14
-
FROM docker.io/oven/bun:1.3.5-alpine AS lint-markdown
14
+
FROM docker.io/oven/bun:1.3.13-alpine AS lint-markdown
15
15
WORKDIR /src
16
-
RUN bun i markdownlint-cli@0.47.0 sentences-per-line@0.5.0
16
+
RUN bun i markdownlint-cli@0.48.0 sentences-per-line@0.5.2
17
17
COPY .markdownlint.json .
18
18
COPY ./CHANGELOG.md ./CHANGELOG.md
19
19
COPY ./README.md ./README.md
@@ -41,6 +41,9 @@ RUN --mount=type=cache,target=/root/.cache/go-build,id=conform/root/.cache/go-bu
41
41
&& mv /go/bin/golangci-lint /bin/golangci-lint
42
42
RUN --mount=type=cache,target=/root/.cache/go-build,id=conform/root/.cache/go-build --mount=type=cache,target=/go/pkg,id=conform/go/pkg go install golang.org/x/vuln/cmd/govulncheck@latest \
43
43
&& mv /go/bin/govulncheck /bin/govulncheck
44
+
ARG DIS_VULNCHECK_VERSION
45
+
RUN --mount=type=cache,target=/root/.cache/go-build,id=conform/root/.cache/go-build --mount=type=cache,target=/go/pkg,id=conform/go/pkg go install github.com/shanduur/dis-vulncheck@${DIS_VULNCHECK_VERSION} \
46
+
&& mv /go/bin/dis-vulncheck /bin/dis-vulncheck
44
47
ARG GOFUMPT_VERSION
45
48
RUN go install mvdan.cc/gofumpt@${GOFUMPT_VERSION} \
46
49
&& mv /go/bin/gofumpt /bin/gofumpt
@@ -87,8 +90,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build,id=conform/root/.cache/go-bu
RUN --mount=type=cache,target=/root/.cache/go-build,id=conform/root/.cache/go-build --mount=type=cache,target=/go/pkg,id=conform/go/pkg ./hack/govulncheck.sh ./...
93
+
RUN --mount=type=cache,target=/root/.cache/go-build,id=conform/root/.cache/go-build --mount=type=cache,target=/go/pkg,id=conform/go/pkg dis-vulncheck -tool=false ./...
0 commit comments