ium_444417/Dockerfile

29 lines
609 B
Docker
Raw Normal View History

2022-04-03 12:24:05 +02:00
FROM ubuntu:latest
2022-04-10 19:55:37 +02:00
FROM tensorflow/tensorflow:latest
2022-05-20 18:14:10 +02:00
FROM continuumio/miniconda3:latest
2022-04-03 12:24:05 +02:00
RUN apt update && apt install -y
2022-05-21 13:38:25 +02:00
# RUN apt-get install -y python3
2022-04-03 12:24:05 +02:00
RUN apt-get install -y unzip
2022-05-21 13:38:25 +02:00
# 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-05-21 13:38:25 +02:00
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
2022-05-31 10:14:04 +02:00
# RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
2022-05-21 13:38:25 +02:00
2022-05-31 10:14:04 +02:00
RUN python3 -m pip install dvc 'dvc[ssh]' paramiko
RUN useradd -r -u 111 jenkins
2022-04-03 12:24:05 +02:00
WORKDIR /app
2022-05-21 13:11:10 +02:00
COPY . .
2022-05-21 13:38:25 +02:00
RUN ls -la