16 lines
437 B
Docker
16 lines
437 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y figlet
|
|
RUN apt-get update
|
|
RUN apt install python3-pip -y
|
|
RUN pip install --user pandas
|
|
RUN pip install --user kaggle
|
|
RUN pip install --user seaborn
|
|
RUN pip install --user tensorflow
|
|
RUN pip install --user sacred
|
|
RUN pip install --user numpy
|
|
RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
|
ENV KAGGLE_USERNAME=michal2608
|
|
ENV KAGGLE_KEY=""
|
|
RUN apt-get install unzip
|
|
RUN apt install git -y |