ium_444354/Dockerfile
Adrian Charkiewicz e1bb68aadf
Some checks failed
s444354-training/pipeline/head There was a failure building this commit
new docker
2022-06-05 17:57:05 +02:00

32 lines
824 B
Docker

FROM ubuntu:latest
FROM tensorflow/tensorflow:latest
RUN apt update && apt install -y
RUN apt-get install -y python3
RUN apt install python3-pip -y
RUN apt install unzip -y
RUN pip3 install --upgrade pip
RUN apt-get install -y python3-pip
RUN apt-get install unzip
RUN apt-get install wget
RUN pip3 install jovian
RUN pip3 install torch
RUN pip3 install seaborn
RUN pip3 install torchvision
RUN pip3 install sklearn
RUN pip3 install sacred
RUN pip3 install pymongo
RUN pip3 install GitPython
RUN pip3 install mlflow
RUN pip3 install dvc
RUN pip3 install dvc[ssh] paramiko
RUN apt install -y sshpass openssh-client
RUN useradd -r -u 111 jenkins
# RUN python3 -m pip install kaggle
RUN python3 -m pip install pandas
RUN pip3 install matplotlib
# RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
WORKDIR /app
COPY . .
RUN ls -la