0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-09-20 01:42:45 +02:00
wp-opentofu/Dockerfile
Jacob McCann 6f5847f90d Update build process for plugin
Favor grabbing release directly and pinning version
2017-04-07 10:26:12 -05:00

20 lines
512 B
Docker

# Docker image for the Drone Terraform plugin
#
# docker build --rm=true -t jmccann/drone-terraform:latest .
FROM alpine:3.4
RUN apk -U add \
ca-certificates \
git \
wget && \
rm -rf /var/cache/apk/*
ENV TERRAFORM_VERSION 0.8.8
RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \
unzip terraform.zip -d /bin && \
rm -f terraform.zip
ADD drone-terraform /bin/
ENTRYPOINT ["/bin/drone-terraform"]