File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM golang:1.7
1+ FROM quay.io/deis/base:0.3.1
22
3- ENV GLIDE_VERSION=v0.11.1 GLIDE_HOME=/root
3+ ENV GO_VERSION=1.7 \
4+ GLIDE_VERSION=v0.11.1 \
5+ GLIDE_HOME=/root \
6+ PATH=$PATH:/usr/local/go/bin:/go/bin \
7+ GOPATH=/go
48
59RUN apt-get update && apt-get install -y \
610 jq \
711 man \
812 upx \
913 zip \
14+ git \
1015 --no-install-recommends \
1116 && rm -rf /var/lib/apt/lists/* \
17+ && curl -L https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz | tar -C /usr/local -xz \
1218 && curl -sSL https://github.com/Masterminds/glide/releases/download/$GLIDE_VERSION/glide-$GLIDE_VERSION-linux-amd64.tar.gz \
1319 | tar -vxz -C /usr/local/bin --strip=1 \
1420 && curl -L https://s3-us-west-2.amazonaws.com/get-deis/shellcheck-0.4.3-linux-amd64 -o /usr/local/bin/shellcheck \
You can’t perform that action at this time.
0 commit comments