mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-08 22:32:39 +01:00
@@ -114,6 +114,7 @@ keepassxreboot/keepassxc
|
||||
robertdavidgraham/masscan
|
||||
MidnightCommander/mc
|
||||
zyedidia/micro
|
||||
zeit/now-cli
|
||||
nzbget/nzbget
|
||||
bitly/oauth2_proxy
|
||||
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" ]
|
||||
Reference in New Issue
Block a user