15 lines
295 B
Docker
15 lines
295 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
RUN apt install unzip
|
|
RUN apt install bc
|
|
RUN pip install kaggle
|
|
RUN pip install --user pandas
|
|
RUN pip install --user scikit-learn
|
|
RUN pip install --user matplotlib
|
|
RUN pip install --user geopandas
|
|
|
|
WORKDIR /app
|
|
|
|
COPY IUM_2.py ./
|