X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=docker%2Fhelm%2FDockerfile;h=896403b352c9b23d7be00a9e9553d9eeade30bde;hb=ff30598b6737f473e36eab3635b64e6eba2e760d;hp=841d261c9621c57b0904334e5f1594bb7a9e8199;hpb=cc1dfc853f1b2b70efae2c3b9dae7ebe55fb75c1;p=validation.git diff --git a/docker/helm/Dockerfile b/docker/helm/Dockerfile index 841d261..896403b 100644 --- a/docker/helm/Dockerfile +++ b/docker/helm/Dockerfile @@ -33,11 +33,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 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 && \