From 75da6e7220b8814249f5a3eb4d366d86876cc5c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Zi=C4=99tkiewicz?= Date: Fri, 11 Jun 2021 13:11:07 +0200 Subject: [PATCH] Add user to avoid "No user exists for uid 111" problem --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index be4d185..a3e9c8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,3 +3,5 @@ FROM ubuntu:20.04 RUN apt-get update RUN apt install -y python3 python3-pip openssh-client RUN pip3 install mlflow sklearn dvc 'dvc[ssh]' paramiko + +RUN useradd -r -u 111 -g 113 jenkins