Packer plugin for Drone CI
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 lines
638 B

FROM plugins/base:amd64 AS builder
RUN apk add --no-cache ca-certificates \
wget && \
rm -rf /var/cache/apk/*
ENV PACKER_VERSION 1.2.5
RUN wget -q https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip -O packer.zip && \
unzip packer.zip -d /bin && \
rm -f packer.zip
FROM plugins/base:multiarch
LABEL maintainer="Bo-Yi Wu <appleboy.tw@gmail.com>" \
org.label-schema.name="Drone Packer" \
org.label-schema.vendor="Bo-Yi Wu" \
org.label-schema.schema-version="1.0"
COPY --from=builder bin/packer /bin/
ADD release/linux/amd64/drone-packer /bin/
ENTRYPOINT ["/bin/drone-packer"]