FROM yaziciz/deepsurg_vllm_v1 | |
WORKDIR /app | |
RUN pip install --upgrade pip | |
RUN conda env create -f /environment.yml | |
# Make RUN commands use the new environment: | |
SHELL ["conda", "run", "-n", "ssgqa", "/bin/bash", "-c"] | |
# The code to run when container is started: | |
CMD ["./run.sh"] |