12 lines
183 B
Docker
12 lines
183 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
RUN apt install unzip
|
|
RUN apt install bc
|
|
|
|
RUN pip3 install kaggle pandas scikit-learn
|
|
|
|
WORKDIR /app
|
|
|
|
COPY IUM_2.py ./
|