Files
fn-serverless/fnctl/Dockerfile
C Cirello b8cc8ad1d5 Functions CLI (#191)
First iteration of CLI tool.
2016-10-24 09:21:07 -07:00

13 lines
235 B
Docker

FROM alpine
RUN apk --update upgrade && \
apk add curl ca-certificates && \
update-ca-certificates && \
rm -rf /var/cache/apk/*
COPY entrypoint.sh /
COPY fnctl /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]