pvanand commited on
Commit
4b3481f
·
1 Parent(s): adba56d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -34,7 +34,7 @@ RUN python create_faiss_index.py
34
 
35
  USER 1001
36
 
37
- #ENTRYPOINT [ "rasa" ]
38
 
39
  # Expose the port that the application listens on.
40
  EXPOSE 7860
@@ -43,7 +43,7 @@ EXPOSE 7860
43
  RUN --mount=type=secret,id=openai,mode=0444,required=true
44
 
45
  # To specify model path
46
- #CMD ["run","actions","--port","7860"]
47
 
48
- CMD ["python", "actions/actions_llm.py"]
49
 
 
34
 
35
  USER 1001
36
 
37
+ ENTRYPOINT [ "rasa" ]
38
 
39
  # Expose the port that the application listens on.
40
  EXPOSE 7860
 
43
  RUN --mount=type=secret,id=openai,mode=0444,required=true
44
 
45
  # To specify model path
46
+ CMD ["run","actions","--port","7860"]
47
 
48
+ #CMD ["python", "actions/actions_llm.py"]
49