From a8816bfa9c90674805383de59c976fd342441448 Mon Sep 17 00:00:00 2001 From: "Brad P. Crochet" Date: Wed, 20 Jul 2022 16:48:02 -0400 Subject: [PATCH] Switch the Dockerfile to use the correct version The RELEASE_TAG and VERSION vars in the Makefile were backwards. This was fixed in a previous patch, but the Dockerfile was still referencing RELEASE_TAG instead of VERSION. Signed-off-by: Brad P. Crochet --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0adf7a4..1b501c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ COPY internal/ internal/ COPY .git .git # Build -RUN make build RELEASE_TAG=${release_tag} +RUN make build VERSION=${release_tag} FROM registry.access.redhat.com/ubi8/ubi-minimal:latest