'update files with ansible'

This commit is contained in:
jonny 2021-03-30 12:48:23 +00:00
parent a42cd588f2
commit c208d9d14a

View File

@ -1,5 +1,5 @@
# Base on latest (edge) alpine image
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.2
FROM harbor.ervine.dev/public/x86_64/alpine:v3.13.23.13.2
LABEL MAINTAINER="Jonathan Ervine docker@ervine.org"
# Install updates
@ -13,7 +13,7 @@ RUN apk update && \
adduser -D helm-web && \
mkdir /data && cd /data && git clone --single-branch --branch master https://git.ervine.org/jonny/flask-python-helm.git /data && \
pip3 install -r /data/requirements.txt && \
curl -L https://get.helm.sh/helm-v3.4.2-linux-amd64.tar.gz -o /tmp/helm.tgz && \
curl -L https://get.helm.sh/helm-v3.5.3-linux-amd64.tar.gz -o /tmp/helm.tgz && \
tar -zxvf /tmp/helm.tgz --strip-components=1 -C /usr/local/bin linux-amd64/helm && \
rm -rf /tmp/src && rm -rf /var/cache/apk/*