Skip to content

Commit

Permalink
memtierd: allow overriding go version for image build.
Browse files Browse the repository at this point in the history
Align with the rest of the plugins, allowing GO_VERSION
to override the golang version used to build the image.

Signed-off-by: Krisztian Litkey <[email protected]>
  • Loading branch information
klihub committed Dec 18, 2024
1 parent 4037edc commit 66ca0b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/plugins/memtierd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
FROM golang:1.22-bullseye AS builder
ARG GO_VERSION=1.22

FROM golang:${GO_VERSION}-bullseye AS builder

ARG IMAGE_VERSION
ARG BUILD_VERSION
Expand Down

0 comments on commit 66ca0b9

Please sign in to comment.