5 lines
112 B
Docker
5 lines
112 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
RUN apt update && apt install -y python3-pip && pip3 install scikit-learn datasets
|
||
|
|
||
|
COPY . .
|