q6 commited on
Commit
c95aa3e
·
1 Parent(s): b165f5f

Add requests package to Dockerfile dependencies

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -8,7 +8,7 @@ ENV PYTHONDONTWRITEBYTECODE=1
8
  ENV PYTHONUNBUFFERED=1
9
  WORKDIR /app
10
 
11
- RUN pip install --no-cache-dir fastapi aiohttp uvicorn python-dotenv pydantic
12
 
13
  COPY --chown=user ./API /app
14
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
8
  ENV PYTHONUNBUFFERED=1
9
  WORKDIR /app
10
 
11
+ RUN pip install --no-cache-dir fastapi aiohttp uvicorn python-dotenv pydantic requests
12
 
13
  COPY --chown=user ./API /app
14
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]