add zipcall

This commit is contained in:
2020-06-04 17:25:55 +08:00
parent 100c2b10e6
commit a1def0931c
3 changed files with 56 additions and 0 deletions

15
zipcall/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:13-alpine
MAINTAINER Newnius <newnius.cn@gmail.com>
RUN apk --no-cache add git
RUN git clone https://github.com/ianramzy/decentralized-video-chat.git /zipcall
RUN cd /zipcall && npm install
ADD bootstrap.sh /etc/bootstrap.sh
WORKDIR /zipcall
CMD ["/etc/bootstrap.sh"]