Files
speckle-server/utils/test-deployment/Dockerfile
T
Gergő Jedlicska 12fcf99425 build(test-deployment): add Dockerfile and CI to test deployment script
For Helm test operations, a test container is needed, this add a container definition and ci steps
2022-01-13 19:44:25 +01:00

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" ]