2022-04-03 22:17:18 +02:00
|
|
|
FROM ubuntu:latest
|
2022-05-06 17:08:30 +02:00
|
|
|
FROM tensorflow/tensorflow:latest
|
|
|
|
RUN apt update && apt install -y
|
|
|
|
RUN apt-get install -y python3
|
2022-05-07 03:02:48 +02:00
|
|
|
RUN apt install python3-pip -y
|
|
|
|
RUN apt install unzip -y
|
|
|
|
RUN pip3 install --upgrade pip
|
2022-05-06 17:08:30 +02:00
|
|
|
RUN apt-get install -y python3-pip
|
|
|
|
RUN apt-get install unzip
|
|
|
|
RUN apt-get install wget
|
2022-05-07 03:02:48 +02:00
|
|
|
RUN pip3 install jovian
|
|
|
|
RUN pip3 install torch
|
|
|
|
RUN pip3 install seaborn
|
|
|
|
RUN pip3 install torchvision
|
2022-05-07 03:44:53 +02:00
|
|
|
RUN pip3 install sklearn
|
2022-05-07 21:07:01 +02:00
|
|
|
RUN pip3 install sacred
|
|
|
|
RUN pip3 install pymongo
|
|
|
|
RUN pip3 install GitPython
|
|
|
|
|
2022-05-06 17:08:30 +02:00
|
|
|
# RUN python3 -m pip install kaggle
|
|
|
|
RUN python3 -m pip install pandas
|
2022-04-03 22:17:18 +02:00
|
|
|
RUN pip3 install matplotlib
|
2022-05-06 17:08:30 +02:00
|
|
|
# RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
|
2022-04-03 22:17:18 +02:00
|
|
|
WORKDIR /app
|
2022-05-06 17:08:30 +02:00
|
|
|
COPY . .
|
|
|
|
RUN ls -la
|