9 lines
170 B
Docker
9 lines
170 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
RUN apt update && apt install -y python3-pip unzip
|
||
|
|
||
|
RUN pip install --user kaggle pandas numpy scikit-learn
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./create-dataset.py ./
|