mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
update versions
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
211be83b50
commit
e608fa3bc6
|
@ -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" ]
|
|
|
@ -93,7 +93,6 @@ compare() {
|
||||||
|
|
||||||
projects=(
|
projects=(
|
||||||
atom/atom
|
atom/atom
|
||||||
camlistore/camlistore
|
|
||||||
certbot/certbot
|
certbot/certbot
|
||||||
hashicorp/consul
|
hashicorp/consul
|
||||||
coredns/coredns
|
coredns/coredns
|
||||||
|
@ -111,6 +110,7 @@ keepassxreboot/keepassxc
|
||||||
zyedidia/micro
|
zyedidia/micro
|
||||||
bitly/oauth2_proxy
|
bitly/oauth2_proxy
|
||||||
Tautulli/Tautulli
|
Tautulli/Tautulli
|
||||||
|
perkeep/perkeep
|
||||||
powershell/powershell
|
powershell/powershell
|
||||||
ricochet-im/ricochet
|
ricochet-im/ricochet
|
||||||
reverse-shell/routersploit
|
reverse-shell/routersploit
|
||||||
|
|
31
perkeep/Dockerfile
Normal file
31
perkeep/Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user