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
411 B

# Docker image for the Drone Terraform plugin
#
# cd $GOPATH/src/github.com/drone-plugins/drone-terraform
# make deps build docker
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/*
ADD drone-terraform /bin/
ENTRYPOINT ["/bin/drone-terraform"]