6 lines
107 B
Docker
6 lines
107 B
Docker
FROM python:3.8-slim
|
|
|
|
COPY utils/test-deployment .
|
|
RUN ./install_prerequisites.sh
|
|
|
|
CMD [ "./run_tests.py" ] |