drone/runner-exec/Dockerfile
Joseph Montanaro 712ddb76ca
All checks were successful
continuous-integration/drone Build is passing
add exec runner
2021-01-02 19:54:53 -08:00

10 lines
292 B
Docker

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"]