We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e8910 commit 0c6dbdfCopy full SHA for 0c6dbdf
Dockerfile
@@ -7,7 +7,7 @@ WORKDIR /app
7
# 将应用程序文件复制到容器中
8
COPY . .
9
10
-EXPOSE 3000
+# EXPOSE 3000
11
12
# 安装应用程序的依赖
13
RUN npm install
app.js
@@ -1,5 +1,6 @@
1
const net=require('net');
2
const {WebSocket,createWebSocketStream}=require('ws');
3
+const { TextDecoder } = require('util');
4
const logcb= (...args)=>console.log.bind(this,...args);
5
const errcb= (...args)=>console.error.bind(this,...args);
6
0 commit comments