16 lines
376 B
Docker
16 lines
376 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
RUN apt update && apt install -y python3-pip
|
||
|
RUN apt install -y unzip python3
|
||
|
RUN apt install -y sshpass openssh-client
|
||
|
RUN pip3 install pandas numpy sklearn tensorflow matplotlib
|
||
|
RUN pip3 install dvc
|
||
|
RUN pip3 install dvc[ssh] paramiko
|
||
|
|
||
|
WORKDIR /ium
|
||
|
|
||
|
RUN useradd -r -u 111 jenkins
|
||
|
|
||
|
#CMD ./download_dataset.sh
|
||
|
#CMD python3 process_dataset.py
|
||
|
#CMD ./stats.sh
|