LeoRaja commited on
Commit
ec603f7
·
verified ·
1 Parent(s): 488df9f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]