0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-09-20 01:42:45 +02:00
wp-opentofu/Dockerfile
Thomas Boerger 4b61f1c76a
Install terraform from new package
To avoid the download of untrusted packages I have updated the
Dockerfile to use a package provided by alpine community repository.
2016-12-20 17:27:55 +01:00

17 lines
411 B
Docker

# Docker image for the Drone Terraform plugin
#
# cd $GOPATH/src/github.com/drone-plugins/drone-terraform
# make deps build docker
FROM alpine:3.4
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" | tee -a /etc/apk/repositories && \
apk -U add \
ca-certificates \
git \
terraform && \
rm -rf /var/cache/apk/*
ADD drone-terraform /bin/
ENTRYPOINT ["/bin/drone-terraform"]