diff --git a/camlistore/Dockerfile b/camlistore/Dockerfile deleted file mode 100644 index f939383..0000000 --- a/camlistore/Dockerfile +++ /dev/null @@ -1,32 +0,0 @@ -FROM alpine:latest -LABEL maintainer "Jessie Frazelle " - -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" ] diff --git a/latest-versions.sh b/latest-versions.sh index 26d0512..b968bf9 100755 --- a/latest-versions.sh +++ b/latest-versions.sh @@ -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 diff --git a/perkeep/Dockerfile b/perkeep/Dockerfile new file mode 100644 index 0000000..0aa8cce --- /dev/null +++ b/perkeep/Dockerfile @@ -0,0 +1,31 @@ +FROM alpine:edge +LABEL maintainer "Jessie Frazelle " + +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" ]