You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM python:3
|
|
|
|
|
|
|
|
EXPOSE 8000
|
|
|
|
|
|
|
|
VOLUME [ "/var/www/data/anomalies", "/var/www/data/datasets", "/var/www/data/metrics", "/var/www/data/models", "/var/www/data/segments" ]
|
|
|
|
|
|
|
|
RUN pip install pandas
|
|
|
|
RUN pip install seglearn
|
|
|
|
RUN pip install scipy
|
|
|
|
RUN pip install tsfresh
|
|
|
|
|
|
|
|
COPY . /var/www
|
|
|
|
|
|
|
|
WORKDIR /var/www/server
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
apt-utils \
|
|
|
|
gnupg \
|
|
|
|
curl \
|
|
|
|
python \
|
|
|
|
make \
|
|
|
|
g++ \
|
|
|
|
git
|
|
|
|
RUN curl -sL https://deb.nodesource.com/setup_9.x | bash -
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y nodejs
|
|
|
|
|
|
|
|
RUN npm install && npm run build
|
|
|
|
|
|
|
|
CMD ["npm", "start"]
|