snailyp commited on
Commit
297f159
·
verified ·
1 Parent(s): c0c9088

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -17
Dockerfile CHANGED
@@ -1,20 +1,5 @@
1
- FROM python:3.9-slim
2
 
3
- WORKDIR /app
4
-
5
- # 复制所需文件到容器中
6
- COPY ./app /app/app
7
- COPY ./main.py /app
8
- COPY ./.env /app
9
- COPY ./requirements.txt /app
10
-
11
- RUN pip install --no-cache-dir -r requirements.txt
12
- ENV API_KEYS=["your_api_key_1"]
13
- ENV ALLOWED_TOKENS=["your_token_1"]
14
- ENV BASE_URL=https://api.groq.com/openai/v1
15
-
16
- # Expose port
17
  EXPOSE 8000
18
 
19
- # Run the application
20
- CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
 
1
+ FROM snailyp/openai-compatible-balance
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  EXPOSE 8000
4
 
5
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]