2022-04-03 12:24:05 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
2022-04-10 19:55:37 +02:00
|
|
|
FROM tensorflow/tensorflow:latest
|
|
|
|
|
2022-04-03 12:24:05 +02:00
|
|
|
RUN apt update && apt install -y
|
|
|
|
RUN apt-get install -y python3
|
|
|
|
RUN apt-get install -y unzip
|
|
|
|
RUN apt-get install -y python3-pip
|
2022-05-04 15:41:39 +02:00
|
|
|
RUN apt-get install unzip
|
2022-05-04 15:43:35 +02:00
|
|
|
RUN apt-get install wget
|
2022-04-03 12:24:05 +02:00
|
|
|
|
2022-04-10 19:55:37 +02:00
|
|
|
# RUN python3 -m pip install kaggle
|
2022-04-06 17:41:58 +02:00
|
|
|
RUN python3 -m pip install pandas
|
2022-05-03 21:48:17 +02:00
|
|
|
RUN pip3 install matplotlib
|
2022-05-07 15:37:17 +02:00
|
|
|
RUN pip3 install sacred
|
2022-05-07 15:39:53 +02:00
|
|
|
RUN pip3 install sacred
|
|
|
|
RUN pip3 install pymongo
|
2022-04-06 18:55:31 +02:00
|
|
|
# RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
2022-04-03 13:07:39 +02:00
|
|
|
|
2022-04-03 12:24:05 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
2022-04-10 19:55:37 +02:00
|
|
|
COPY . .
|
2022-04-10 22:06:24 +02:00
|
|
|
|
2022-04-25 22:09:52 +02:00
|
|
|
RUN ls -la
|