Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -4,4 +4,4 @@ COPY . /app
|
|
| 4 |
RUN apt-get update && apt-get install -y build-essential libatlas-base-dev && rm -rf /var/lib/apt/lists/*
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
ENV GEMINI_API_KEY=${GEMINI_API_KEY}
|
| 7 |
-
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]
|
|
|
|
| 4 |
RUN apt-get update && apt-get install -y build-essential libatlas-base-dev && rm -rf /var/lib/apt/lists/*
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
ENV GEMINI_API_KEY=${GEMINI_API_KEY}
|
| 7 |
+
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--timeout", "120", "app:app"]
|