44bd5919f8
This reverts commit 7fe41b1fb2.
8 lines
145 B
Docker
8 lines
145 B
Docker
FROM python:3.8-slim
|
|
|
|
WORKDIR /speckle
|
|
COPY utils/test-deployment .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD [ "./run_tests.py" ]
|