PairDrop / Dockerfile
Yvan-W's picture
Update Dockerfile
4ed500c verified
raw
history blame contribute delete
173 Bytes
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