Drone Terraform plugin
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.

16 lines
385 B

# Docker image for the Drone Terraform plugin
9 years ago
#
# docker build --rm=true -t jmccann/drone-terraform:latest .
9 years ago
FROM alpine:3.4
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories && \
apk -U add \
ca-certificates \
git \
terraform && \
rm -rf /var/cache/apk/*
9 years ago
ADD drone-terraform /bin/
ENTRYPOINT ["/bin/drone-terraform"]