Jacob McCann
8 years ago
committed by
GitHub
1 changed files with 10 additions and 13 deletions
@ -1,19 +1,16 @@ |
|||||
# Docker image for Drone's terraform deployment plugin |
# Docker image for the Drone Terraform plugin |
||||
# |
# |
||||
# CGO_ENABLED=0 go build -a -tags netgo |
# cd $GOPATH/src/github.com/drone-plugins/drone-terraform |
||||
# docker build --rm=true -t plugins/drone-terraform . |
# make deps build docker |
||||
|
|
||||
FROM gliderlabs/alpine:3.2 |
FROM alpine:3.4 |
||||
RUN apk-install ca-certificates git |
|
||||
|
|
||||
ENV TERRAFORM_VERSION 0.7.5 |
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories && \ |
||||
|
apk -U add \ |
||||
RUN apk update && \ |
ca-certificates \ |
||||
wget -q "https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.21-r2/glibc-2.21-r2.apk" && \ |
git \ |
||||
apk add --allow-untrusted glibc-2.21-r2.apk && \ |
terraform && \ |
||||
wget -q -O terraform.zip "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip" && \ |
rm -rf /var/cache/apk/* |
||||
unzip terraform.zip -d /bin && \ |
|
||||
rm -rf /var/cache/apk/* glibc-2.21-r2.apk terraform.zip |
|
||||
|
|
||||
ADD drone-terraform /bin/ |
ADD drone-terraform /bin/ |
||||
ENTRYPOINT ["/bin/drone-terraform"] |
ENTRYPOINT ["/bin/drone-terraform"] |
||||
|
Loading…
Reference in new issue