2021-04-11 11:39:22 +02:00
|
|
|
FROM ubuntu:20.04
|
|
|
|
|
2021-04-11 12:24:29 +02:00
|
|
|
RUN apt update >>/dev/null
|
|
|
|
|
|
|
|
RUN apt install -y python3-pip >>/dev/null
|
2021-04-11 11:39:22 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2021-04-11 12:24:29 +02:00
|
|
|
COPY . ./
|
|
|
|
|
|
|
|
RUN chmod +x run.sh
|
|
|
|
|
|
|
|
RUN pip3 install kaggle
|
|
|
|
RUN pip3 install sklearn
|
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install seaborn
|
|
|
|
RUN pip3 install matplotlib
|
2021-04-11 11:39:22 +02:00
|
|
|
|
2021-04-11 12:24:29 +02:00
|
|
|
CMD ./run.sh
|