From eb883b00e8f19c5ee8e632fc6cf0830f42f7a9fd Mon Sep 17 00:00:00 2001 From: bruce Date: Mon, 29 Apr 2024 13:51:19 +0800 Subject: [PATCH] update toml --- .dockerignore | 1 - Dockerfile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index fb37140..4da04e3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,3 @@ **/__pycache__ tests/ -pyproject.toml snyc.json diff --git a/Dockerfile b/Dockerfile index e9d607d..b812cfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,6 @@ COPY requirements.txt requirements.txt RUN pip install -r requirements.txt --no-cache-dir -COPY ./gpt_server . +COPY ./gpt_server /app/ CMD ["uvicorn", "gpt_server:app", "--host", "0.0.0.0", "--port", "8000"]