2022-05-30 11:56:23 +02:00
|
|
|
FROM ubuntu:22.04
|
2021-05-26 21:26:06 +02:00
|
|
|
|
2022-05-30 11:56:23 +02:00
|
|
|
RUN apt update
|
2022-05-30 12:02:18 +02:00
|
|
|
RUN apt install -y python3 python3-pip
|
|
|
|
RUN apt install -y sshpass openssh-client
|
|
|
|
#RUN pip3 install kaggle
|
2022-04-10 16:34:15 +02:00
|
|
|
RUN mkdir /.kaggle && chmod o+w /.kaggle
|
2022-05-30 12:08:17 +02:00
|
|
|
RUN python3 -m pip install dvc 'dvc[ssh]' paramiko
|
2022-05-30 11:58:21 +02:00
|
|
|
RUN useradd -r -u 111 jenkins
|