10 lines
270 B
Docker
10 lines
270 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
RUN apt update && apt install -y python3-pip --no-install-recommends && pip3 install numpy && pip3 install pandas && pip3 install wget && pip3 install scikit-learn && rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./create.py ./
|
||
|
COPY ./stats.py ./
|
||
|
|