From 4781cdc71a68fb45cefe0366c702b46de2f56cf0 Mon Sep 17 00:00:00 2001
From: Varac <varac@varac.net>
Date: Wed, 16 Jun 2021 21:30:12 +0200
Subject: [PATCH] Install flux in container image

---
 Dockerfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 4b1d91e7b..6a7d1c194 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,12 +1,14 @@
 FROM alpine:3.13.5
 
 LABEL name="OpenAppStack management"
-LABEL version="4.2"
+LABEL version="4.3"
 LABEL vendor1="Greenhost"
 
 
 # Download yq v4 from github until it's packaged in alpine > 3.13
 ADD https://github.com/mikefarah/yq/releases/download/v4.7.0/yq_linux_amd64 /usr/local/bin/yq
+ADD https://github.com/fluxcd/flux2/releases/download/v0.15.0/flux_0.15.0_linux_amd64.tar.gz /tmp
+RUN tar -xzf /tmp/flux*.tar.gz && mv ./flux /usr/local/bin
 COPY ./test/pytest/le-staging-bundle.pem /usr/local/share/ca-certificates/le-staging-bundle.pem
 COPY ./requirements.txt /requirements.txt
 RUN \
-- 
GitLab