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