Spaces:
Sleeping
Sleeping
| FROM python:3.11 | |
| WORKDIR /api | |
| RUN git clone --branch dev https://github.com/Imageomics/telemetry-dashboard.git | |
| WORKDIR /api/telemetry-dashboard | |
| RUN pip3 install gunicorn && \ | |
| pip3 install -r requirements.txt | |
| COPY run.sh /api/telemetry-dashboard/run.sh | |
| CMD /api/telemetry-dashboard/run.sh | |