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
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
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> MAINTAINER Jessie Frazelle <jess@linux.com>
ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV PATH /go/bin:/usr/local/go/bin:$PATH
@ -18,7 +18,7 @@ RUN buildDeps=' \
' \ ' \
set -x \ set -x \
&& apk update \ && 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 \ && go get github.com/sourcegraph/checkup/cmd/checkup \
&& cp /go/bin/checkup /usr/bin/checkup \ && cp /go/bin/checkup /usr/bin/checkup \
&& apk del $buildDeps \ && apk del $buildDeps \

View File

@ -1,4 +1,4 @@
FROM ruby:2-alpine FROM ruby:alpine
RUN apk add --no-cache \ RUN apk add --no-cache \
ca-certificates \ ca-certificates \

View File

@ -1,5 +1,4 @@
# use alpine edge for go 1.6 FROM alpine:latest
FROM alpine:edge
MAINTAINER Jessie Frazelle <jess@linux.com> MAINTAINER Jessie Frazelle <jess@linux.com>
ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV PATH /go/bin:/usr/local/go/bin:$PATH

View File

@ -1,4 +1,4 @@
FROM alpine:edge FROM alpine:latest
RUN apk add --no-cache \ RUN apk add --no-cache \
bash \ bash \

View File

@ -1,9 +1,11 @@
FROM alpine:edge FROM alpine:latest
MAINTAINER Christian Koep <christian.koep@fom-net.de> MAINTAINER Christian Koep <christian.koep@fom-net.de>
ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go ENV GOPATH /go
ENV MICRO_VERSION v1.1.0
RUN buildDeps=' \ RUN buildDeps=' \
go \ go \
git \ git \
@ -15,12 +17,12 @@ RUN buildDeps=' \
' \ ' \
set -x \ set -x \
&& apk --no-cache add $buildDeps \ && apk --no-cache add $buildDeps \
&& git clone --depth 1 -b master https://github.com/zyedidia/micro /usr/src/micro \ && git clone --branch "$MICRO_VERSION" https://github.com/zyedidia/micro /go/src/github.com/zyedidia/micro \
&& cd /usr/src/micro \ && cd /go/src/github.com/zyedidia/micro \
&& mkdir -p /go/bin \ && mkdir -p /go/bin \
&& make install \ && make install \
&& mv /go/bin/micro /usr/bin/micro \ && mv /go/bin/micro /usr/bin/micro \
&& rm -rf /usr/src/micro \ && rm -rf /go/src/github.com/zyedidia/micro \
&& apk del $buildDeps \ && apk del $buildDeps \
&& rm -rf /go \ && rm -rf /go \
&& echo "Build complete." && echo "Build complete."

View File

@ -5,7 +5,7 @@
# --name mop \ # --name mop \
# r.j3ss.co/mop # r.j3ss.co/mop
# #
FROM alpine:edge FROM alpine:latest
RUN apk --no-cache add \ RUN apk --no-cache add \
ca-certificates ca-certificates

View File

@ -1,5 +1,4 @@
# use alpine edge for go 1.6 FROM alpine:latest
FROM alpine:edge
MAINTAINER Jessie Frazelle <jess@linux.com> MAINTAINER Jessie Frazelle <jess@linux.com>
ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV PATH /go/bin:/usr/local/go/bin:$PATH
@ -9,7 +8,7 @@ RUN apk --no-cache add \
ca-certificates \ ca-certificates \
curl curl
ENV VAULT_VERSION v0.6.1 ENV VAULT_VERSION v0.6.2
RUN buildDeps=' \ RUN buildDeps=' \
bash \ bash \
@ -23,7 +22,7 @@ RUN buildDeps=' \
zip \ zip \
' \ ' \
set -x \ set -x \
&& apk --no-cache add $buildDeps \ && apk --no-cache add --repository http://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \
&& mkdir -p /go/src/github.com/hashicorp \ && mkdir -p /go/src/github.com/hashicorp \
&& git clone --branch ${VAULT_VERSION} https://github.com/hashicorp/vault /go/src/github.com/hashicorp/vault \ && git clone --branch ${VAULT_VERSION} https://github.com/hashicorp/vault /go/src/github.com/hashicorp/vault \
&& cd /go/src/github.com/hashicorp/vault \ && cd /go/src/github.com/hashicorp/vault \