Skip to content
This repository was archived by the owner on May 28, 2024. It is now read-only.

Commit 6c1a6ad

Browse files
committed
[helm-tester] stop using deprecated onbuild images
docker onbuild have been deprecated in docker-library/official-images#2076 and aren't part of python docker images build since docker-library/python#314.
1 parent 7d7fc1e commit 6c1a6ad

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

helpers/helm-tester/Dockerfile

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.6-onbuild
1+
FROM python:3.7
22

33
ENV HELM_VERSION=2.14.0
44

@@ -8,3 +8,8 @@ RUN wget https://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-li
88
rm -rf linux-amd64 && \
99
HOME=/ helm init --client-only && \
1010
chmod 777 -R /.helm
11+
12+
COPY requirements.txt /usr/src/app/
13+
RUN pip install --no-cache-dir -r requirements.txt
14+
15+
COPY . /usr/src/app

0 commit comments

Comments
 (0)