17 lines
398 B
Docker
17 lines
398 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get -y update
|
|
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
|
|
RUN apt install -y sshpass openssh-client
|
|
|
|
WORKDIR /ium
|
|
|
|
RUN useradd -r -u 111 jenkins
|
|
|
|
#CMD ./download_dataset.sh
|
|
#CMD python3 process_dataset.py
|
|
#CMD ./stats.sh |