9 lines
192 B
Docker
9 lines
192 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt-get install -y python3-pip
|
|
|
|
RUN pip install pandas
|
|
RUN pip install scikit-learn
|
|
RUN pip install datasets
|
|
RUN pip install torch
|
|
RUN pip install seaborn |