mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
add now
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
b3af1c0450
commit
401d655d2b
|
@ -114,6 +114,7 @@ keepassxreboot/keepassxc
|
||||||
robertdavidgraham/masscan
|
robertdavidgraham/masscan
|
||||||
MidnightCommander/mc
|
MidnightCommander/mc
|
||||||
zyedidia/micro
|
zyedidia/micro
|
||||||
|
zeit/now-cli
|
||||||
nzbget/nzbget
|
nzbget/nzbget
|
||||||
bitly/oauth2_proxy
|
bitly/oauth2_proxy
|
||||||
facebook/osquery
|
facebook/osquery
|
||||||
|
|
26
now/Dockerfile
Normal file
26
now/Dockerfile
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
FROM alpine:latest as builder
|
||||||
|
MAINTAINER Jessica Frazelle <jess@linux.com>
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
ca-certificates \
|
||||||
|
curl \
|
||||||
|
gzip
|
||||||
|
|
||||||
|
ENV NOW_VERSION 11.4.6
|
||||||
|
|
||||||
|
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" ]
|
||||||
|
CMD [ "--help" ]
|
Loading…
Reference in New Issue
Block a user