Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -1,8 +1,9 @@
|
|
| 1 |
FROM python:3.10
|
| 2 |
|
| 3 |
WORKDIR /app
|
|
|
|
| 4 |
COPY . .
|
| 5 |
|
| 6 |
-
RUN pip install openai
|
| 7 |
|
| 8 |
CMD ["python", "inference.py"]
|
|
|
|
| 1 |
FROM python:3.10
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
+
|
| 5 |
COPY . .
|
| 6 |
|
| 7 |
+
RUN pip install --no-cache-dir openai
|
| 8 |
|
| 9 |
CMD ["python", "inference.py"]
|