From 578104a6a3e6e1be899f52c08072f6aab14c5778 Mon Sep 17 00:00:00 2001 From: MohammadReza Palide Date: Wed, 20 Dec 2023 20:36:31 +0000 Subject: [PATCH] revert skywire repo to skycoin/skywire | change golang to alpine1.21 --- docker/images/skywire-visor/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/images/skywire-visor/Dockerfile b/docker/images/skywire-visor/Dockerfile index c1556be9..9b20366e 100755 --- a/docker/images/skywire-visor/Dockerfile +++ b/docker/images/skywire-visor/Dockerfile @@ -1,7 +1,7 @@ ARG image_tag=e2e ARG base=alpine -FROM golang:alpine3.18 as builder +FROM golang:alpine1.21 as builder ARG BUILDINFO_LDFLAGS ARG CGO_ENABLED=0 @@ -12,7 +12,7 @@ ENV CGO_ENABLED=${CGO_ENABLED} \ WORKDIR / RUN apk add --no-cache make git build-base && \ - git clone -b fix/fix-vpn-issue-on-skywire-services https://github.com/mrpalide/skywire && \ + git clone -b develop https://github.com/skycoin/skywire && \ cd skywire && \ sh -c /skywire/docker/images/visor/install-preq.sh && \ make build-race && \