2022-06-06 01:19:43 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
2022-06-06 01:24:16 +02:00
|
|
|
RUN apt-get -y update
|
2022-06-06 01:19:43 +02:00
|
|
|
RUN apt update && apt install -y python3-pip
|
|
|
|
RUN apt install -y unzip python3
|
|
|
|
RUN pip3 install pandas numpy sklearn tensorflow matplotlib
|
|
|
|
RUN pip3 install dvc
|
|
|
|
RUN pip3 install dvc[ssh] paramiko
|
2022-06-06 01:24:16 +02:00
|
|
|
RUN apt install -y sshpass openssh-client
|
2022-06-06 01:19:43 +02:00
|
|
|
|
|
|
|
WORKDIR /ium
|
|
|
|
|
|
|
|
RUN useradd -r -u 111 jenkins
|
|
|
|
|
|
|
|
#CMD ./download_dataset.sh
|
|
|
|
#CMD python3 process_dataset.py
|
|
|
|
#CMD ./stats.sh
|