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