forked from Ivasoft/github-actions
All checks were successful
continuous-integration/drone/push Build is passing
9 lines
302 B
Docker
9 lines
302 B
Docker
FROM docker:dind
|
|
|
|
ENV DOCKER_HOST=unix:///var/run/docker.sock
|
|
|
|
RUN apk add --no-cache ca-certificates curl
|
|
RUN curl -s https://raw.githubusercontent.com/nektos/act/master/install.sh | sh -s v0.2.48
|
|
|
|
ADD release/linux/amd64/plugin /bin/
|
|
ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "/bin/plugin"] |