ium_444354/Dockerfile

32 lines
826 B
Docker
Raw Permalink Normal View History

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-15 19:24:50 +02:00
RUN pip3 install mlflow
2022-06-05 17:57:05 +02:00
RUN pip3 install dvc
RUN pip3 install dvc[ssh] paramiko
2022-06-05 18:03:54 +02:00
# RUN apt install -y sshpass openssh-client
2022-06-05 17:57:05 +02:00
RUN useradd -r -u 111 jenkins
2022-05-07 21:07:01 +02:00
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