ium_444417/Dockerfile
s444417 84bb8ee94e
All checks were successful
s444417-training/pipeline/head This commit looks good
s444417-evaluation/pipeline/head This commit looks good
dvc
2022-05-31 10:14:04 +02:00

29 lines
609 B
Docker

FROM ubuntu:latest
FROM tensorflow/tensorflow:latest
FROM continuumio/miniconda3:latest
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
RUN apt-get install unzip
RUN apt-get install wget
RUN python3 -m pip install kaggle
RUN python3 -m pip install pandas
RUN pip3 install matplotlib
RUN pip3 install sacred
RUN pip3 install pymongo
RUN pip3 install mlflow
# RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
RUN python3 -m pip install dvc 'dvc[ssh]' paramiko
RUN useradd -r -u 111 jenkins
WORKDIR /app
COPY . .
RUN ls -la