cli/Dockerfile

18 lines
427 B
Docker
Raw Permalink Normal View History

2021-06-08 02:55:18 +00:00
FROM alpine:latest
2021-05-30 18:58:18 +00:00
RUN apk add --no-cache bash \
curl \
docker-cli \
git \
mercurial \
make \
build-base
ENTRYPOINT ["/entrypoint.sh"]
CMD [ "-h" ]
COPY scripts/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
2021-06-08 02:55:18 +00:00
COPY glab_*.apk /tmp/
2021-05-30 18:58:18 +00:00
RUN apk add --allow-untrusted /tmp/glab_*.apk