drone/runner-exec/Dockerfile

10 lines
292 B
Docker
Raw Normal View History

2021-01-02 19:54:53 -08:00
FROM alpine:latest
RUN echo 'http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories
RUN apk update --no-cache
RUN apk add --no-cache git curl jq yq python3 docker-cli
RUN ln -s /usr/bin/python3 /usr/bin/python
COPY ./drone-runner-exec /bin/
CMD ["drone-runner-exec"]