12fcf99425
For Helm test operations, a test container is needed, this add a container definition and ci steps
6 lines
141 B
Docker
6 lines
141 B
Docker
FROM python:3.8-slim
|
|
|
|
COPY install_prerequisites.sh requirements.txt run_tests.py ./
|
|
RUN ./install_prerequisites.sh
|
|
|
|
CMD [ "./run_tests.py" ] |