2023-03-30 14:11:46 +02:00
|
|
|
FROM ubuntu:latest
|
2023-04-04 14:16:46 +02:00
|
|
|
|
2023-04-04 12:21:51 +02:00
|
|
|
RUN apt update && apt install -y figlet
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt install python3-pip -y
|
|
|
|
RUN pip install --user pandas
|
2023-05-10 11:41:59 +02:00
|
|
|
RUN pip install --user jupyter
|
2023-04-04 12:21:51 +02:00
|
|
|
RUN pip install --user kaggle
|
|
|
|
RUN pip install --user seaborn
|
2023-05-05 16:57:04 +02:00
|
|
|
RUN pip install --user tensorflow
|
|
|
|
RUN pip install --user sacred
|
|
|
|
RUN pip install --user numpy
|
2023-04-04 12:21:51 +02:00
|
|
|
RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
2023-04-04 14:16:46 +02:00
|
|
|
ENV KAGGLE_USERNAME=michal2608
|
|
|
|
ENV KAGGLE_KEY=""
|
2023-04-04 22:03:08 +02:00
|
|
|
RUN apt-get install unzip
|
2023-05-10 12:36:39 +02:00
|
|
|
RUN apt install git -y
|
|
|
|
|
2023-05-10 13:31:23 +02:00
|
|
|
CMD python3 predict.py
|