You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2022/10/14 12:03:41 UTC

[skywalking-showcase] branch main updated: Add missing install command for agentless appp

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git


The following commit(s) were added to refs/heads/main by this push:
     new ba57bdc  Add missing install command for agentless appp
ba57bdc is described below

commit ba57bdcc2a1f5ecb8025e65f898934f728260ff8
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Fri Oct 14 20:03:31 2022 +0800

    Add missing install command for agentless appp
---
 services/app/server/Dockerfile.agentless | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/services/app/server/Dockerfile.agentless b/services/app/server/Dockerfile.agentless
index ceb8b40..4594ed9 100644
--- a/services/app/server/Dockerfile.agentless
+++ b/services/app/server/Dockerfile.agentless
@@ -21,6 +21,7 @@ WORKDIR /app
 
 COPY . .
 
-RUN mv src/index.agentless.js src/index.js
+RUN mv src/index.agentless.js src/index.js ; \
+    npm install
 
 CMD npm start