Spaces:
Runtime error
Runtime error
change requirements to lock
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -2,6 +2,6 @@ FROM python:3.12
|
|
| 2 |
|
| 3 |
WORKDIR /
|
| 4 |
COPY . .
|
| 5 |
-
RUN pip install --no-cache-dir --upgrade -r requirements.
|
| 6 |
|
| 7 |
CMD ["fastapi", "run", "src/search_api/api.py", "--port", "7860"]
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /
|
| 4 |
COPY . .
|
| 5 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.lock
|
| 6 |
|
| 7 |
CMD ["fastapi", "run", "src/search_api/api.py", "--port", "7860"]
|