diff --git a/helpers/helm-tester/Dockerfile b/helpers/helm-tester/Dockerfile index 0ed2bd1a4..72530e18a 100644 --- a/helpers/helm-tester/Dockerfile +++ b/helpers/helm-tester/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.6-onbuild +FROM python:3.7 ENV HELM_VERSION=2.14.0 @@ -8,3 +8,8 @@ RUN wget https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-li rm -rf linux-amd64 && \ HOME=/ helm init --client-only && \ chmod 777 -R /.helm + +COPY requirements.txt /usr/src/app/ +RUN pip install --no-cache-dir -r requirements.txt + +COPY . /usr/src/app