From 506aa0e97b579d6a16023aaeadb5a6bee5b0b4cf Mon Sep 17 00:00:00 2001 From: bjwswang Date: Fri, 21 Jul 2023 11:24:26 +0800 Subject: [PATCH] feat: add dockerfile for model worker Signed-off-by: bjwswang --- llms/Dockerfile.worker | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 llms/Dockerfile.worker diff --git a/llms/Dockerfile.worker b/llms/Dockerfile.worker new file mode 100644 index 000000000..cdf07769f --- /dev/null +++ b/llms/Dockerfile.worker @@ -0,0 +1,13 @@ +FROM nvidia/cuda:11.7.1-runtime-ubuntu20.04 + +# enable python3.9 as the default agi runtime +RUN apt-get update -y && apt-get install -y python3.9 python3.9-distutils curl +RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py +RUN python3.9 get-pip.py + +# install agi libraries +RUN pip3 install fschat + + + +