Files
plugin-drone-docker-manifest/Dockerfile.arm
T
Thomas Boerger 40b2fb9008 Add the os to docker tags, simplified dockerfiles (#2)
* Add the os to docker tags, simplified dockerfiles

* Added volume and workspace to readme example
2018-01-24 11:10:55 +08:00

18 lines
569 B
Docker

FROM alpine:3.6 as base
RUN apk add --no-cache curl && \
curl -sSLo /bin/manifest-tool https://github.com/estesp/manifest-tool/releases/download/v0.7.0/manifest-tool-linux-armv7 && \
chmod +x /bin/manifest-tool
FROM plugins/base:multiarch
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" \
org.label-schema.name="Drone Manifest" \
org.label-schema.vendor="Drone.IO Community" \
org.label-schema.schema-version="1.0"
COPY --from=base /bin/manifest-tool /bin/
ADD release/linux/arm/drone-manifest /bin/
ENTRYPOINT ["/bin/drone-manifest"]