From 7a4f25b26b9cb1108d697cd162af74593e649c61 Mon Sep 17 00:00:00 2001 From: Carlos Strand Date: Mon, 23 Aug 2021 09:06:28 -0300 Subject: [PATCH] fix: remove rx from go version on Dockerfile --- cmd/zepto/_templates/web/Dockerfile | 2 +- version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/zepto/_templates/web/Dockerfile b/cmd/zepto/_templates/web/Dockerfile index e3446aa..0561a9f 100644 --- a/cmd/zepto/_templates/web/Dockerfile +++ b/cmd/zepto/_templates/web/Dockerfile @@ -8,7 +8,7 @@ ENV PATH /go/bin:$PATH COPY . . ## Install dependencies and build RUN apk update && \ - apk add --update go=1.16.5-r0 git alpine-sdk make python3 && \ + apk add --update go git alpine-sdk make python3 && \ go get -u github.com/go-zepto/zepto-cli/cmd/zepto && \ export PATH=$PATH:/usr/local/go/bin && \ npm install && \ diff --git a/version.go b/version.go index 5a0e645..16d1071 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package zeptocli -var VERSION = "1.0.14" +var VERSION = "1.0.15"