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.

34 lines
786 B

# Docker image for the Drone Terraform plugin
9 years ago
#
8 years ago
# docker build -t jmccann/drone-terraform:latest .
FROM golang:1.13-alpine AS builder
RUN apk add --no-cache git
WORKDIR /tmp/drone-terraform
COPY go.mod go.mod
COPY go.sum go.sum
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo -o /go/bin/drone-terraform
9 years ago
FROM alpine:3.11
RUN apk add --no-cache \
ca-certificates \
git \
wget \
curl \
openssh-client
ARG terraform_version
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/
9 years ago
ENTRYPOINT ["/bin/drone-terraform"]