mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
16 lines
264 B
Docker
16 lines
264 B
Docker
FROM node:13-alpine
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
RUN apk --no-cache add git
|
|
|
|
RUN git clone https://code.newnius.com/newnius/zipcall.git
|
|
|
|
RUN cd /zipcall && npm install
|
|
|
|
ADD bootstrap.sh /etc/bootstrap.sh
|
|
|
|
WORKDIR /zipcall
|
|
|
|
CMD ["/etc/bootstrap.sh"]
|