diff --git a/dockerfiles/theia/Dockerfile b/dockerfiles/theia/Dockerfile index 3301fb4a6..a88274824 100644 --- a/dockerfiles/theia/Dockerfile +++ b/dockerfiles/theia/Dockerfile @@ -110,7 +110,9 @@ COPY --from=builder /home/theia-dev/theia-source-code/production/plugins /defaul # Install bzip2 to unpack files # Install which tool in order to search git # Install curl and bash -RUN apk add --update --no-cache sudo git bzip2 which bash curl +# Install ssh for cloning ssh-repositories +# Install less for handling git diff properly +RUN apk add --update --no-cache sudo git bzip2 which bash curl openssh openssh-keygen less RUN adduser -D -S -u 1001 -G root -h ${HOME} -s /bin/sh theia \ && echo "%wheel ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers \ # Create /projects for Che