File size: 282 Bytes
b79ff60 e2eb5ea 5241fc3 e16c7bb add2081 e16c7bb |
1 2 3 4 5 6 7 8 9 |
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"]
|