From f2a641b506a1a8962d8de2cd28b517ee0b7ba0a1 Mon Sep 17 00:00:00 2001 From: RafilxTenfen Date: Wed, 7 Aug 2024 11:05:08 -0300 Subject: [PATCH] fix: docker build tag --- contrib/images/babylond/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/images/babylond/Dockerfile b/contrib/images/babylond/Dockerfile index f01a13508..71cd8c8bd 100644 --- a/contrib/images/babylond/Dockerfile +++ b/contrib/images/babylond/Dockerfile @@ -20,7 +20,7 @@ RUN go mod download COPY ./ /go/src/github.com/babylonlabs-io/babylon/ # If version is set, then checkout this version RUN if [ -n "${VERSION}" ]; then \ - git fetch origin tag ${VERSION}; --no-tags \ + git fetch origin tag ${VERSION} --no-tags; \ git checkout -f ${VERSION}; \ fi