File size: 413 Bytes
54ed672 3e9aa58 54ed672 3a078d8 a431dd4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM node:latest
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y -qq wget curl tzdata git
EXPOSE 7860
WORKDIR /zmal
RUN git clone https://github.com/xizeyoupan/Meting-API.git
WORKDIR /zmal/Meting-API
RUN npm i
RUN chmod -R 777 /zmal
RUN npm run build:all
CMD node node.js |