update versions

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-05-12 16:21:02 -04:00
parent 211be83b50
commit e608fa3bc6
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
3 changed files with 32 additions and 33 deletions

View File

@ -1,32 +0,0 @@
FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go
RUN apk --no-cache add \
ca-certificates
ENV CAMLISTORE_VERSION 0.10
RUN buildDeps=' \
go \
git \
gcc \
libc-dev \
libgcc \
' \
set -x \
&& apk --no-cache add $buildDeps \
&& mkdir -p /go/src/camlistore.googlesource.com \
&& cd /go/src/camlistore.googlesource.com \
&& git clone --depth 1 --branch "${CAMLISTORE_VERSION}" https://camlistore.googlesource.com/camlistore.git \
&& cd /go/src/camlistore.googlesource.com/camlistore \
&& go run make.go \
&& cp -r ./bin/* /usr/local/bin/ \
&& apk del $buildDeps \
&& rm -rf /go \
&& echo "Build complete."
ENTRYPOINT [ "camlistored" ]

View File

@ -93,7 +93,6 @@ compare() {
projects=(
atom/atom
camlistore/camlistore
certbot/certbot
hashicorp/consul
coredns/coredns
@ -111,6 +110,7 @@ keepassxreboot/keepassxc
zyedidia/micro
bitly/oauth2_proxy
Tautulli/Tautulli
perkeep/perkeep
powershell/powershell
ricochet-im/ricochet
reverse-shell/routersploit

31
perkeep/Dockerfile Normal file
View File

@ -0,0 +1,31 @@
FROM alpine:edge
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go
RUN apk --no-cache add \
ca-certificates
ENV PERKEEP_VERSION 0.10
RUN buildDeps=' \
go \
git \
gcc \
libc-dev \
libgcc \
' \
set -x \
&& apk --no-cache add $buildDeps \
&& mkdir -p /go/src/perkeep.org \
&& git clone --depth 1 --branch "${PERKEEP_VERSION}" https://camlistore.googlesource.com/camlistore.git /go/src/perkeep.org \
&& cd /go/src/perkeep.org \
&& go run make.go \
&& cp -r /go/bin/* /usr/local/bin/ \
&& apk del $buildDeps \
&& rm -rf /go \
&& echo "Build complete."
ENTRYPOINT [ "perkeepd" ]