Skip to content

Commit 6f2e464

Browse files
authored
Merge pull request #57 from mboersma/back-to-golang-base
ref(Dockerfile): revert to golang:1.7.1 base image
2 parents cd46ba4 + db09d58 commit 6f2e464

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

rootfs/Dockerfile

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
1-
FROM quay.io/deis/base:0.3.1
1+
FROM golang:1.7.1
22

3-
ENV GO_VERSION=1.7.1 \
4-
GLIDE_VERSION=v0.12.2 \
5-
GLIDE_HOME=/root \
6-
PATH=$PATH:/usr/local/go/bin:/go/bin \
7-
GOPATH=/go
3+
ENV GLIDE_VERSION=v0.12.2 \
4+
GLIDE_HOME=/root
85

96
RUN apt-get update && apt-get install -y \
107
jq \
118
man \
129
upx \
1310
zip \
14-
git \
1511
--no-install-recommends \
1612
&& 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 \
1813
&& curl -sSL https://github.com/Masterminds/glide/releases/download/$GLIDE_VERSION/glide-$GLIDE_VERSION-linux-amd64.tar.gz \
1914
| tar -vxz -C /usr/local/bin --strip=1 \
2015
&& curl -L https://s3-us-west-2.amazonaws.com/get-deis/shellcheck-0.4.3-linux-amd64 -o /usr/local/bin/shellcheck \

0 commit comments

Comments
 (0)