PabloVD commited on
Commit
ad74916
·
1 Parent(s): 1096944

Fix pip path

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -52,7 +52,7 @@ RUN pip uninstall -y langgraph || true
52
  # Clone and install Denario app
53
  RUN git clone https://github.com/AstroPilot-AI/DenarioApp.git
54
 
55
- RUN pip install DenarioApp
56
 
57
  # This informs Docker that the container will listen on port 5000 at runtime.
58
  EXPOSE 8501
 
52
  # Clone and install Denario app
53
  RUN git clone https://github.com/AstroPilot-AI/DenarioApp.git
54
 
55
+ RUN pip install DenarioApp/.
56
 
57
  # This informs Docker that the container will listen on port 5000 at runtime.
58
  EXPOSE 8501