File size: 173 Bytes
f238b2d
 
 
 
 
3f59c17
f238b2d
 
4ed500c
f238b2d
 
1
2
3
4
5
6
7
8
9
10
11
FROM node:22

WORKDIR /RUN

RUN git clone https://github.com/schlagmichdoch/PairDrop.git && \
    cd PairDrop && \
    npm install

CMD cd PairDrop && npm start

EXPOSE 3000