dev-dashboard / Dockerfile
egrace479's picture
Add application files.
568d6f3
raw
history blame
No virus
296 Bytes
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