Yvan-W commited on
Commit
f238b2d
·
verified ·
1 Parent(s): cd541cc

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:22
2
+
3
+ WORKDIR /RUN
4
+
5
+ RUN git clone https://github.com/schlagmichdoch/PairDrop.git && \
6
+ cd PairDrop &&
7
+ npm install
8
+
9
+ CMD npm start
10
+
11
+ EXPOSE 3000