Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM golang:1.25.6 AS builder
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Gardener contributors
#
# SPDX-License-Identifier: Apache-2.0

FROM golang:1.25.7 AS builder
WORKDIR /go/src/github.com/gardener/etcd-wrapper
COPY . .

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / Build OCI-Images (etcd-wrapper, gardener/etcd-wrapper, gardener.cloud/cve-categorisation, private... / build-images (linux/amd64, ubuntu-latest, v0.6.2-06a90938a94b2033c60242e5dcffec95ee13528d-linux_a...

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 7 in Dockerfile

View workflow job for this annotation

GitHub Actions / build / Build OCI-Images (etcd-wrapper, gardener/etcd-wrapper, gardener.cloud/cve-categorisation, private... / build-images (linux/arm64, ubuntu-24.04-arm, v0.6.2-06a90938a94b2033c60242e5dcffec95ee13528d-linu...

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# Build
RUN make build
Expand Down
Loading