Spaces:
Paused
Paused
-ssh +https
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -2,7 +2,7 @@ FROM node:latest
|
|
2 |
|
3 |
WORKDIR /usr/src/app/
|
4 |
|
5 |
-
RUN git clone -b feat/agent_chat_react
|
6 |
cd huggingface.js/packages/agents && \
|
7 |
npm install && \
|
8 |
npm run build && \
|
@@ -10,7 +10,7 @@ RUN git clone -b feat/agent_chat_react [email protected]:huggingface/huggingface.js
|
|
10 |
cd ../../..
|
11 |
|
12 |
|
13 |
-
RUN git clone -b feature/chat-agent
|
14 |
cd poc-agents.js && \
|
15 |
npm install && \
|
16 |
npm link @huggingface/agents
|
|
|
2 |
|
3 |
WORKDIR /usr/src/app/
|
4 |
|
5 |
+
RUN git clone -b feat/agent_chat_react https://github.com/huggingface/huggingface.js.git && \
|
6 |
cd huggingface.js/packages/agents && \
|
7 |
npm install && \
|
8 |
npm run build && \
|
|
|
10 |
cd ../../..
|
11 |
|
12 |
|
13 |
+
RUN git clone -b feature/chat-agent https://github.com/nsarrazin/poc-agents.js.git && \
|
14 |
cd poc-agents.js && \
|
15 |
npm install && \
|
16 |
npm link @huggingface/agents
|