Spaces:
Running
on
L4
Running
on
L4
fix: install ten-agent
Browse files- 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"]
|