16 lines
329 B
Docker
16 lines
329 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y figlet
|
|
RUN apt install unzip -y
|
|
RUN apt install python3-pip -y
|
|
RUN pip3 install pandas
|
|
RUN pip3 install kaggle
|
|
RUN pip3 install scikit-learn
|
|
RUN pip3 install seaborn
|
|
|
|
WORKDIR /app
|
|
|
|
RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
|
ENV KAGGLE_USERNAME=witeks1833
|
|
ENV KAGGLE_KEY=""
|