Spaces:
Sleeping
Sleeping
File size: 296 Bytes
1fffda3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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
|