ium_487194/Dockerfile

16 lines
329 B
Docker
Raw Normal View History

2023-04-04 15:31:03 +02:00
FROM ubuntu:latest
2023-04-04 15:34:46 +02:00
RUN apt update && apt install -y figlet
RUN apt install unzip -y
2023-04-04 15:31:03 +02:00
RUN apt install python3-pip -y
RUN pip3 install pandas
RUN pip3 install kaggle
RUN pip3 install scikit-learn
2023-04-04 16:38:04 +02:00
RUN pip3 install seaborn
2023-04-04 22:33:03 +02:00
WORKDIR /app
2023-04-04 16:38:04 +02:00
RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
ENV KAGGLE_USERNAME=witeks1833
ENV KAGGLE_KEY=""