update base image

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle
2016-10-07 19:03:54 -07:00
parent 5661c9df08
commit 4c8d199b21
7 changed files with 15 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
FROM alpine:edge
FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com>
ENV PATH /go/bin:/usr/local/go/bin:$PATH
@@ -18,7 +18,7 @@ RUN buildDeps=' \
' \
set -x \
&& apk update \
&& apk add --no-cache $buildDeps \
&& apk add --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \
&& go get github.com/sourcegraph/checkup/cmd/checkup \
&& cp /go/bin/checkup /usr/bin/checkup \
&& apk del $buildDeps \