ium_440058/Dockerfile
2021-04-18 15:02:19 +02:00

16 lines
383 B
Docker

FROM ubuntu:latest
RUN apt update && apt install -y python3 && apt install -y nano
RUN apt update && apt install python3-pip -y
RUN pip3 install kaggle && pip3 install pandas && pip3 install scikit-learn && pip3 install matplotlib
RUN apt install -y curl
RUN pip3 install --user wget
WORKDIR /app
COPY ./init.py ./
COPY ./stats.py ./
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle