zadanie doker

This commit is contained in:
szymonj98 2022-04-03 14:13:12 +02:00
parent 4d9d7d7e62
commit abf498611a

View File

@ -1,7 +1,9 @@
FROM ubuntu:latest FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -y python3-pip RUN apt update && apt install -y
RUN apt-get install -y python3
RUN apt-get install -y unzip RUN apt-get install -y unzip
RUN pip3 install --user kaggle RUN apt-get install -y python3-pip
RUN pip3 install --user pandas RUN python3 -m pip install --user kaggle
RUN pip3 install -U scikit-learn RUN python3 -m pip install --user pandas
RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle