-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jess Frazelle <[email protected]>
- Loading branch information
Showing
7 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:edge | ||
FROM alpine:latest | ||
MAINTAINER Jessie Frazelle <[email protected]> | ||
|
||
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 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:2-alpine | ||
FROM ruby:alpine | ||
|
||
RUN apk add --no-cache \ | ||
ca-certificates \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# use alpine edge for go 1.6 | ||
FROM alpine:edge | ||
FROM alpine:latest | ||
MAINTAINER Jessie Frazelle <[email protected]> | ||
|
||
ENV PATH /go/bin:/usr/local/go/bin:$PATH | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:edge | ||
FROM alpine:latest | ||
|
||
RUN apk add --no-cache \ | ||
bash \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
FROM alpine:edge | ||
FROM alpine:latest | ||
MAINTAINER Christian Koep <[email protected]> | ||
|
||
ENV PATH /go/bin:/usr/local/go/bin:$PATH | ||
ENV GOPATH /go | ||
|
||
ENV MICRO_VERSION v1.1.0 | ||
|
||
RUN buildDeps=' \ | ||
go \ | ||
git \ | ||
|
@@ -15,12 +17,12 @@ RUN buildDeps=' \ | |
' \ | ||
set -x \ | ||
&& apk --no-cache add $buildDeps \ | ||
&& git clone --depth 1 -b master https://github.com/zyedidia/micro /usr/src/micro \ | ||
&& cd /usr/src/micro \ | ||
&& git clone --branch "$MICRO_VERSION" https://github.com/zyedidia/micro /go/src/github.com/zyedidia/micro \ | ||
&& cd /go/src/github.com/zyedidia/micro \ | ||
&& mkdir -p /go/bin \ | ||
&& make install \ | ||
&& mv /go/bin/micro /usr/bin/micro \ | ||
&& rm -rf /usr/src/micro \ | ||
&& rm -rf /go/src/github.com/zyedidia/micro \ | ||
&& apk del $buildDeps \ | ||
&& rm -rf /go \ | ||
&& echo "Build complete." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# use alpine edge for go 1.6 | ||
FROM alpine:edge | ||
FROM alpine:latest | ||
MAINTAINER Jessie Frazelle <[email protected]> | ||
|
||
ENV PATH /go/bin:/usr/local/go/bin:$PATH | ||
|
@@ -9,7 +8,7 @@ RUN apk --no-cache add \ | |
ca-certificates \ | ||
curl | ||
|
||
ENV VAULT_VERSION v0.6.1 | ||
ENV VAULT_VERSION v0.6.2 | ||
|
||
RUN buildDeps=' \ | ||
bash \ | ||
|
@@ -23,7 +22,7 @@ RUN buildDeps=' \ | |
zip \ | ||
' \ | ||
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 \ | ||
&& git clone --branch ${VAULT_VERSION} https://github.com/hashicorp/vault /go/src/github.com/hashicorp/vault \ | ||
&& cd /go/src/github.com/hashicorp/vault \ | ||
|