2021-04-10 13:22:11 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
2021-04-10 13:57:58 +02:00
|
|
|
RUN apt update && apt install -y python3-pip && pip3 install setuptools && pip3 install numpy && pip3 install pandas && pip3 install wget && pip3 install scikit-learn && rm -rf /var/lib/apt/lists/*
|
2021-04-10 13:22:11 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY ./create.py ./
|
|
|
|
COPY ./stats.py ./
|
|
|
|
|
2021-04-10 13:57:58 +02:00
|
|
|
|