SurgVLLM / Dockerfile
yaziciz's picture
Update Dockerfile
e16c7bb verified
raw
history blame
282 Bytes
FROM yaziciz/deepsurg_vllm_v1
WORKDIR /app
# Create the conda environment from the environment file in /app.
RUN conda env create -f environment.yml
# Run demo.py using the newly created environment.
CMD ["conda", "run", "--no-capture-output", "-n", "myenv", "python", "demo.py"]