ium_487197/Dockerfile
2023-04-04 12:11:02 +02:00

22 lines
381 B
Docker

FROM ubuntu:latest
ENV KAGGLE_USERNAME="jaszwajcar"
ENV KAGGLE_KEY="key"
RUN apt update && apt install -y figlet
RUN apt install unzip -y
RUN apt install python3-pip -y
RUN pip3 install kaggle
RUN pip3 install pandas
RUN pip3 install unzip
RUN pip3 install scikit-learn
RUN pip3 install seaborn
WORKDIR /app
COPY ./download_dataset.sh ./
COPY ./stats.sh ./
COPY ./data.py ./