SurgVLLM / Dockerfile
yaziciz's picture
Update Dockerfile
ba8191c verified
raw
history blame
281 Bytes
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"]