zwv9 commited on
Commit
653f15d
·
1 Parent(s): 407287e

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+
3
+ WORKDIR /usr/src/app
4
+ RUN git clone https://github.com/0zl/proxy-sv.git .
5
+
6
+ COPY package*.json ./
7
+ RUN npm install
8
+ COPY . .
9
+
10
+ EXPOSE 7860
11
+ CMD [ "node", "docker.js" ]