update docker image

add openai api_base

update api base

update chatgpt add api_base

update chatgpt add api_base
This commit is contained in:
wujiyu115
2023-03-27 17:20:32 +08:00
parent ad99c5909c
commit 2fe283d304
6 changed files with 71 additions and 1 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.7-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]