Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -9,4 +9,5 @@ RUN mkdir -p /app/nodejs && cd /app/nodejs && npm install axios ws
|
|
9 |
RUN chmod -R 755 /app
|
10 |
USER 1000
|
11 |
WORKDIR /app
|
12 |
-
CMD php -S 0.0.0.0:
|
|
|
|
9 |
RUN chmod -R 755 /app
|
10 |
USER 1000
|
11 |
WORKDIR /app
|
12 |
+
CMD php -S 0.0.0.0:7861 -t /app/php &\
|
13 |
+
cd /app/nodejs && node -e "require('http').createServer(async(res,req)=>{req.end('111')}).listen(7860)"
|