Copy helm charts from tagged version v2.15.1
[validation.git] / docker / helm / Dockerfile
index 841d261..5d9c9af 100644 (file)
@@ -17,6 +17,8 @@
 # ref: https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#use-multi-stage-builds
 FROM python:3.6-alpine3.9 as build
 
+ARG HELM_TAG=v2.15.1
+
 # Install dependencies
 COPY pip-requirements.txt /wheels/requirements/pip-requirements.txt
 RUN apk --no-cache add --update \
@@ -33,11 +35,13 @@ WORKDIR /wheels
 RUN pip3 install wheel
 RUN pip3 wheel -r /wheels/requirements/pip-requirements.txt
 RUN git clone https://gerrit.akraino.org/r/validation /opt/akraino/validation
+RUN git clone -b $HELM_TAG https://github.com/helm/helm.git /opt/helm
 
 # Copy binaries in the final container and install requirements
 FROM python:3.6-alpine3.9
 COPY --from=build /wheels /wheels
 COPY --from=build /opt/akraino/validation /opt/akraino/validation
+COPY --from=build /opt/helm/docs/examples/alpine /opt/akraino/bluval-test-alpine
 
 RUN pip3 install -r /wheels/requirements/pip-requirements.txt \
                  -f /wheels && \