From 6083f61d05154af740417ad863054c348ef68a3c Mon Sep 17 00:00:00 2001 From: Christian Couder Date: Wed, 27 Apr 2016 07:51:25 +0200 Subject: [PATCH 1/2] Dockerfile: use go version 1.5.4-r0 This error recently appeared when building the Dockerfile: ERROR: unsatisfiable constraints: go-1.5.4-r0: breaks: world[go=1.5.3-r0] It looks that now upstream requires go 1.5.4-r0 not 1.5.3-r0. License: MIT Signed-off-by: Christian Couder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b641c4b46..96d42cd92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ ENV GX_IPFS "" # The IPFS fs-repo within the container ENV IPFS_PATH /data/ipfs # Golang stuff -ENV GO_VERSION 1.5.3-r0 +ENV GO_VERSION 1.5.4-r0 ENV GOPATH /go ENV PATH /go/bin:$PATH ENV SRC_PATH /go/src/github.com/ipfs/go-ipfs From 01fd30069f3dbd986940457f3484b73cecb019b1 Mon Sep 17 00:00:00 2001 From: Jeromy Date: Wed, 27 Apr 2016 13:11:39 -0700 Subject: [PATCH 2/2] bump test/Dockerfile go version to 1.5.4 License: MIT Signed-off-by: Jeromy --- test/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Dockerfile b/test/Dockerfile index 61a4a2c1f..a67aca735 100644 --- a/test/Dockerfile +++ b/test/Dockerfile @@ -16,7 +16,7 @@ EXPOSE 8080 ENV GX_IPFS "" ENV IPFS_PATH /data/ipfs -ENV GO_VERSION 1.5.3-r0 +ENV GO_VERSION 1.5.4-r0 ENV GOPATH /go ENV PATH /go/bin:$PATH ENV SRC_PATH /go/src/github.com/ipfs/go-ipfs