10 lines
292 B
Docker
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"]
|