Browse Source

Merge pull request #38 from jmccann/build_process

pull/39/head
Jacob McCann 8 years ago
committed by GitHub
parent
commit
dfb5352a32
  1. 2
      .drone.yml
  2. 10
      Dockerfile

2
.drone.yml

@ -4,7 +4,7 @@ workspace:
pipeline:
test:
image: golang:1.6
image: golang:1.8
environment:
- CGO_ENABLED=0
commands:

10
Dockerfile

@ -4,12 +4,16 @@
FROM alpine:3.4
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories && \
apk -U add \
RUN apk -U add \
ca-certificates \
git \
terraform && \
wget && \
rm -rf /var/cache/apk/*
ENV TERRAFORM_VERSION 0.8.8
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
ADD drone-terraform /bin/
ENTRYPOINT ["/bin/drone-terraform"]

Loading…
Cancel
Save