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"] | |