22 lines
381 B
Docker
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 ./
|
||
|
|