9 lines
327 B
Docker
9 lines
327 B
Docker
FROM centos:7
|
|
RUN yum update -y && yum install git -y && yum clean all
|
|
RUN curl -sL https://rpm.nodesource.com/setup_14.x | bash - && yum install -y nodejs
|
|
RUN git clone https://xgiovio@bitbucket.org/xgiovio/statist.git
|
|
COPY docker-entrypoint.sh /
|
|
WORKDIR /statist
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
CMD ["node","index.js"]
|