我需要为我的服务器创建docker,但它只适用于cuda,我如何将其添加到我的Dockerfile中?
FROM python:3.10
ENV FLASK_RUN_PORT=5000
RUN sudo nvidia-ctk runtime configure # Here
COPY . /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["python", "server.py"]
我试着用下面的方法,但是没有用,请帮帮忙
1条答案
按热度按时间bfhwhh0e1#
例如,您可以从CUDA docker container开始,然后安装python。