mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-24 13:20:39 +00:00
Update build process for plugin
Favor grabbing release directly and pinning version
This commit is contained in:
parent
2d3b9fd201
commit
6f5847f90d
@ -4,7 +4,7 @@ workspace:
|
||||
|
||||
pipeline:
|
||||
test:
|
||||
image: golang:1.6
|
||||
image: golang:1.8
|
||||
environment:
|
||||
- CGO_ENABLED=0
|
||||
commands:
|
||||
|
10
Dockerfile
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…
Reference in New Issue
Block a user