From 8627f402116cbb006a30ba7b61f00263d90b2771 Mon Sep 17 00:00:00 2001 From: joecryptotoo <80373433+joecryptotoo@users.noreply.github.com> Date: Thu, 22 Jun 2023 10:12:13 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e049bc166..297e5d8cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:latest +FROM nvidia/cuda:11.8.0-devel-ubuntu22.04 RUN apt-get update && apt-get install -y \ git \ @@ -12,10 +12,8 @@ COPY . /app RUN pip install -r requirements.txt -EXPOSE 3306 +EXPOSE 7860 EXPOSE 8000 CMD ["python", "pilot/server/llmserver.py"] CMD ["python", "pilot/server/webserver.py"] - -