edwagbb commited on
Commit
1fcadb1
·
verified ·
1 Parent(s): f5444c8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -5,7 +5,7 @@ COPY --from=builder /app/aurora /app/aurora
5
  COPY --from=builder /app/harPool /app/harPool
6
  RUN apt-get update -y && apt-get install -y nodejs npm
7
  RUN npm install express http-proxy-middleware
8
-
9
  COPY <<EOF /app/index.js
10
  const express = require("express");
11
  const app = express();
@@ -34,9 +34,6 @@ app.use(
34
  );
35
  app.listen(7860, () => console.log(`Example app listening on port ${port}!`));
36
  EOF
37
-
38
- COPY anakin_proxy_linux_amd64 /app/anakin
39
  RUN chmod -R u+rwx,g+rwx,o+rwx /app
40
- #&& chmod +x /app/anakin && chmod +x /app/aurora
41
 
42
  CMD /app/aurora & /app/anakin & node /app/index.js
 
5
  COPY --from=builder /app/harPool /app/harPool
6
  RUN apt-get update -y && apt-get install -y nodejs npm
7
  RUN npm install express http-proxy-middleware
8
+ COPY anakin_proxy_linux_amd64 /app/anakin
9
  COPY <<EOF /app/index.js
10
  const express = require("express");
11
  const app = express();
 
34
  );
35
  app.listen(7860, () => console.log(`Example app listening on port ${port}!`));
36
  EOF
 
 
37
  RUN chmod -R u+rwx,g+rwx,o+rwx /app
 
38
 
39
  CMD /app/aurora & /app/anakin & node /app/index.js