loc commited on
Commit
038c358
Β·
verified Β·
1 Parent(s): b2e39d6

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:18
2
+
3
+ WORKDIR /app
4
+
5
+ RUN git clone https://$PAT@github.com/locmaymo/proxy.git .
6
+
7
+ EXPOSE 7860
8
+
9
+ CMD [ "node", "server.js" ]