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