mirror of
https://github.com/drone-plugins/drone-docker.git
synced 2026-07-16 16:21:18 +08:00
8dc5d0a749
Remediates vulnerabilities in harnesssecure/ecr by updating the plugins/docker base image. ECR inherits the fix via FROM plugins/docker:linux-*.
11 lines
393 B
Docker
11 lines
393 B
Docker
FROM arm64v8/docker:28.5.2-dind
|
|
|
|
ENV DOCKER_HOST=unix:///var/run/docker.sock
|
|
|
|
# Install cosign for container image signing
|
|
RUN wget -O /usr/local/bin/cosign https://github.com/sigstore/cosign/releases/download/v2.6.3/cosign-linux-arm64 \
|
|
&& chmod +x /usr/local/bin/cosign
|
|
|
|
ADD release/linux/arm64/drone-docker /bin/
|
|
ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "/bin/drone-docker"]
|