Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion custom-metrics-stackdriver-adapter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.26.2-alpine as builder
FROM golang:1.26.7-alpine AS builder
WORKDIR ${GOPATH}/src/github.com/GoogleCloudPlatform/k8s-stackdriver/custom-metrics-stackdriver-adapter
COPY . ./
RUN CGO_ENABLED=0 GOOS=linux go build -mod=readonly -o /adapter
Expand Down
2 changes: 1 addition & 1 deletion custom-metrics-stackdriver-adapter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GOOS?=linux
OUT_DIR?=build
PACKAGE=github.com/GoogleCloudPlatform/k8s-stackdriver/custom-metrics-stackdriver-adapter
PREFIX?=staging-k8s.gcr.io
TAG ?= v0.16.9
TAG ?= v0.16.10
PKG := $(shell find pkg/* -type f)

.PHONY: build docker push test clean verify-generated update-generated
Expand Down
2 changes: 1 addition & 1 deletion custom-metrics-stackdriver-adapter/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/GoogleCloudPlatform/k8s-stackdriver/custom-metrics-stackdriver-adapter

go 1.26.2
go 1.26.7

require (
cloud.google.com/go/compute/metadata v0.9.0
Expand Down
Loading