Spaces:
Sleeping
Sleeping
File size: 296 Bytes
568d6f3 |
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/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
|