avfranco commited on
Commit
ee8da9f
·
1 Parent(s): f020b21

ea4all-docker-load-private-from-public-spaces

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -25,9 +25,9 @@ RUN huggingface-cli login --token $(cat cli_token)
25
  COPY --chown=user . $HOME/app
26
 
27
 
28
-
29
- RUN git clone https://avfranco:$(cat cli_token)@huggingface.co/spaces/avfranco/ea4all-docker
30
  COPY ./requirements.txt .
31
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
32
 
33
- CMD ["python", "./ea4all-docker/main.py"]
 
25
  COPY --chown=user . $HOME/app
26
 
27
 
28
+ # Clone and run ea4all-agent
29
+ RUN git clone https://avfranco:$(cat cli_token)@huggingface.co/spaces/avfranco/ea4all-agent
30
  COPY ./requirements.txt .
31
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
32
 
33
+ CMD ["python", "./ea4all-agent/app.py"]