diff --git a/latest-versions.sh b/latest-versions.sh index e194956..1ed91b8 100755 --- a/latest-versions.sh +++ b/latest-versions.sh @@ -49,8 +49,6 @@ get_latest() { dir="zookeeper/3.5" elif [[ "$dir" == "oauth2_proxy" ]]; then dir="oauth2-proxy" - elif [[ "$dir" == "now-cli" ]]; then - dir="now" elif [[ "$dir" == "wireguard" ]]; then dir="wireguard/install" fi @@ -123,7 +121,6 @@ MidnightCommander/mc zyedidia/micro mitmproxy/mitmproxy hashicorp/nomad -zeit/now-cli nzbget/nzbget pusher/oauth2_proxy facebook/osquery diff --git a/now/Dockerfile b/now/Dockerfile deleted file mode 100644 index 5f91515..0000000 --- a/now/Dockerfile +++ /dev/null @@ -1,25 +0,0 @@ -FROM alpine:latest as builder -MAINTAINER Jessica Frazelle - -RUN apk add --no-cache \ - ca-certificates \ - curl \ - gzip - -ENV NOW_VERSION 15.8.7 - -RUN curl -sSL -o "/tmp/now.gz" "https://github.com/zeit/now-cli/releases/download/${NOW_VERSION}/now-alpine.gz" \ - && gzip -dv "/tmp/now.gz" \ - && mv /tmp/now /usr/bin/now \ - && chmod +x /usr/bin/now \ - && rm -rf "/tmp/now.gz" - -FROM alpine:latest - -RUN apk add --no-cache \ - libstdc++ - -COPY --from=builder /usr/bin/now /usr/bin/now -COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs - -ENTRYPOINT [ "now" ]