0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-06-02 18:39:41 +02:00
wp-opentofu/Dockerfile

34 lines
786 B
Docker
Raw Normal View History

# Docker image for the Drone Terraform plugin
2015-11-09 20:23:42 +01:00
#
2017-05-30 16:47:32 +02:00
# docker build -t jmccann/drone-terraform:latest .
2021-04-27 14:45:30 +02:00
FROM golang:1.16-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
2015-11-09 20:23:42 +01:00
2021-04-27 14:45:30 +02:00
FROM alpine:3.13
2015-11-10 14:56:18 +01:00
RUN apk add --no-cache \
ca-certificates \
git \
wget \
2020-02-06 14:59:34 +01:00
curl \
openssh-client
2015-11-10 14:56:18 +01:00
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/
2015-11-09 20:23:42 +01:00
ENTRYPOINT ["/bin/drone-terraform"]