0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-11-22 00:30:40 +00:00

Merge pull request #69 from combor/master

Add ssh client and update golang
This commit is contained in:
Jacob McCann 2018-07-09 07:45:50 -05:00 committed by GitHub
commit 08402ee4d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
# Docker image for the Drone Terraform plugin # Docker image for the Drone Terraform plugin
# #
# docker build -t jmccann/drone-terraform:latest . # docker build -t jmccann/drone-terraform:latest .
FROM golang:1.9-alpine AS builder FROM golang:1.10-alpine AS builder
COPY ./*.go ./src/ COPY ./*.go ./src/
COPY ./vendor/ ./src/ COPY ./vendor/ ./src/
RUN set -ex \ RUN set -ex \
@ -13,8 +13,9 @@ FROM alpine:3.7
RUN apk -U add \ RUN apk -U add \
ca-certificates \ ca-certificates \
git \ git \
wget && \ wget \
rm -rf /var/cache/apk/* openssh-client && \
rm -rf /var/cache/apk/*
ENV TERRAFORM_VERSION 0.11.7 ENV TERRAFORM_VERSION 0.11.7
RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \ RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \