feat image: Add Dockerfile for CI pipeline image
Adds a simple Docker image that can be used in CI pipelines to deploy `kontemplate`-based environments. This image contains kontemplate and all of its dependencies (including pass as an optional dependency).
This commit is contained in:
parent
9923b1e64d
commit
d76ea59f4c
3 changed files with 28 additions and 0 deletions
14
image/Dockerfile
Normal file
14
image/Dockerfile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
FROM alpine:3.6
|
||||
|
||||
ADD hashes /root/hashes
|
||||
ADD https://storage.googleapis.com/kubernetes-release/release/v1.6.4/bin/linux/amd64/kubectl /usr/bin/kubectl
|
||||
ADD https://github.com/tazjin/kontemplate/releases/download/v1.0.2/kontemplate-1.0.2-f79b261-linux-amd64.tar.gz /tmp/kontemplate.tar.gz
|
||||
|
||||
# Pass release version is 1.7.1
|
||||
ADD https://raw.githubusercontent.com/zx2c4/password-store/38ec1c72e29c872ec0cdde82f75490640d4019bf/src/password-store.sh /usr/bin/pass
|
||||
|
||||
RUN sha256sum -c /root/hashes && \
|
||||
apk add -U bash tree gnupg && \
|
||||
chmod +x /usr/bin/kubectl /usr/bin/pass && \
|
||||
tar xzvf /tmp/kontemplate.tar.gz && \
|
||||
mv kontemplate /usr/bin/kontemplate
|
||||
Loading…
Add table
Add a link
Reference in a new issue