0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-09-20 01:42:45 +02:00
wp-opentofu/Dockerfile

26 lines
740 B
Docker
Raw Normal View History

# Docker image for the Drone Terraform plugin
2015-11-09 20:23:42 +01:00
#
2016-12-22 16:26:16 +01:00
# docker build --rm=true -t jmccann/drone-terraform:latest .
FROM golang:1.8-alpine AS builder
COPY ./*.go ./src/
COPY ./vendor/ ./src/
RUN set -ex \
&& cd ./src \
&& CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo -o /go/bin/drone-terraform
2015-11-09 20:23:42 +01:00
FROM alpine:3.4
2015-11-10 14:56:18 +01:00
RUN apk -U add \
ca-certificates \
git \
wget && \
rm -rf /var/cache/apk/*
2015-11-10 14:56:18 +01:00
2017-07-25 20:53:26 +02:00
ENV TERRAFORM_VERSION 0.9.11
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
COPY --from=builder /go/bin/drone-terraform /bin/
2015-11-09 20:23:42 +01:00
ENTRYPOINT ["/bin/drone-terraform"]