From 4b9c89bd56032c1e26a3a982331e8cbd28cd898c Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 19 Aug 2015 13:00:40 -0700 Subject: [PATCH] update dotfiles image to go 1.5 --- dev/fedora/22/base/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev/fedora/22/base/Dockerfile b/dev/fedora/22/base/Dockerfile index 918f025..a00b31f 100644 --- a/dev/fedora/22/base/Dockerfile +++ b/dev/fedora/22/base/Dockerfile @@ -21,8 +21,8 @@ RUN wget https://get.docker.com/builds/Linux/x86_64/docker-1.3.0 -O /usr/local/b chmod 555 /usr/local/bin/docker # Golang compilers -RUN cd /usr/local && wget https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz && \ - tar xf go1.4.2.linux-amd64.tar.gz && rm go1.4.2.linux-amd64.tar.gz +RUN cd /usr/local && wget https://storage.googleapis.com/golang/go1.5.linux-amd64.tar.gz && \ + tar xf go1.5.linux-amd64.tar.gz && rm go1.5.linux-amd64.tar.gz ADD setup.sh /opt/xena/setup.sh ADD ./vimplugins.lua /opt/xena/vimplugins.lua @@ -37,7 +37,7 @@ RUN dnf -y install dnf-plugins-core &&\ # Add Tini ENV TINI_VERSION v0.5.0 -ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini +ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static /tini RUN chmod +x /tini ENTRYPOINT ["/tini", "--"]