wangyoucao577 commited on
Commit
b719cca
·
verified ·
1 Parent(s): c643384

feat: update ten_framework

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM ghcr.io/ten-framework/ten_agent_build:0.5.0-cuda
2
 
3
  # install huggingface cli
4
  RUN pip install "huggingface_hub[cli]" hf_transfer
@@ -19,7 +19,8 @@ RUN . $NVM_DIR/nvm.sh && nvm install node
19
 
20
 
21
  # install TEN-Agent
22
- RUN git clone https://github.com/TEN-framework/TEN-Agent.git /app
 
23
  RUN cd /app && task use AGENT=agents/examples/huggingface && cd agents && ./scripts/package.sh
24
  RUN . $NVM_DIR/nvm.sh && cd /app/playground && npm i
25
 
 
1
+ FROM ghcr.io/ten-framework/ten_agent_build:0.6.1-cuda
2
 
3
  # install huggingface cli
4
  RUN pip install "huggingface_hub[cli]" hf_transfer
 
19
 
20
 
21
  # install TEN-Agent
22
+ RUN git clone -b feature/ttd https://github.com/TEN-framework/ten_framework.git /ten_framework
23
+ RUN ln -sf /ten_framework/ai_agents /app
24
  RUN cd /app && task use AGENT=agents/examples/huggingface && cd agents && ./scripts/package.sh
25
  RUN . $NVM_DIR/nvm.sh && cd /app/playground && npm i
26