From 5b99ca96b36ae51cd1fddb7254dc0b795ca8b397 Mon Sep 17 00:00:00 2001 From: Samuel dos Santos Date: Sun, 12 Aug 2018 14:07:11 +0100 Subject: [PATCH] containers/docker: add support to go1.10 --- containers/docker/alpine3.8/Dockerfile | 4 ++-- containers/docker/ubuntu-xenial/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/containers/docker/alpine3.8/Dockerfile b/containers/docker/alpine3.8/Dockerfile index 4381aa0926..da351c7d44 100644 --- a/containers/docker/alpine3.8/Dockerfile +++ b/containers/docker/alpine3.8/Dockerfile @@ -7,8 +7,8 @@ RUN apk add --no-cache --update \ go \ linux-headers \ make \ - musl-dev &&\ - #Clone + musl-dev &&\ + #Clone and build git clone --depth 1 https://github.com/ethereum/go-ethereum &&\ cd /go-ethereum &&\ make geth &&\ diff --git a/containers/docker/ubuntu-xenial/Dockerfile b/containers/docker/ubuntu-xenial/Dockerfile index 8a0cd07449..8430ce2c3a 100644 --- a/containers/docker/ubuntu-xenial/Dockerfile +++ b/containers/docker/ubuntu-xenial/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update &&\ cd /go-ethereum &&\ make geth &&\ cp /go-ethereum/build/bin/geth /geth &&\ - #Cleanup + #CleanUp apt-get remove -y \ golang-1.10 \ git \