ium_434684/Dockerfile

20 lines
277 B
Docker

FROM ubuntu:20.04
RUN apt update >>/dev/null
RUN apt install -y python3-pip >>/dev/null
WORKDIR /app
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
CMD ./run.sh