wangyoucao577 commited on
Commit
270f170
·
verified ·
1 Parent(s): 388eb43

fix: install ten-agent

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -56,4 +56,9 @@ COPY --chown=user entrypoint.sh $HOME/app/
56
  # auto init nvm for the "user" user
57
  RUN echo '. "${BASH_ENV}"' >> $HOME/.bashrc
58
 
 
 
 
 
 
59
  ENTRYPOINT ["/home/user/app/entrypoint.sh"]
 
56
  # auto init nvm for the "user" user
57
  RUN echo '. "${BASH_ENV}"' >> $HOME/.bashrc
58
 
59
+ # install TEN-Agent
60
+ RUN git clone https://github.com/TEN-framework/TEN-Agent.git
61
+ RUN task use && cd agents && ./scripts/package.sh
62
+ RUN cd playground && npm i
63
+
64
  ENTRYPOINT ["/home/user/app/entrypoint.sh"]