Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Commit

Permalink
Install 'libsecret' as it's used by keytar that Theia depends on
Browse files Browse the repository at this point in the history
Signed-off-by: Artem Zatsarynnyi <azatsary@redhat.com>
  • Loading branch information
azatsarynnyy authored and RomanNikitenko committed Jun 17, 2021
1 parent 754b1e7 commit 07aeab7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
# Install less for handling git diff properly
# Install sshpass for handling passwords for SSH keys
# Install lsblk as Theia requires it
RUN apk add --update --no-cache sudo git bzip2 which bash curl openssh openssh-keygen less sshpass lsblk
# Install libsecret as Theia requires it
RUN apk add --update --no-cache sudo git bzip2 which bash curl openssh openssh-keygen less sshpass lsblk libsecret
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ ARG SSHPASS_VERSION="1.06"
# Install ssh for cloning ssh-repositories
# Install less for handling git diff properly
# Install sshpass for handling passwords for SSH keys
RUN yum install -y sudo git bzip2 which bash curl openssh less && \
# Install libsecret as Theia requires it
RUN yum install -y sudo git bzip2 which bash curl openssh less libsecret && \
curl -ssl https://netcologne.dl.sourceforge.net/project/sshpass/sshpass/"${SSHPASS_VERSION}"/sshpass-"${SSHPASS_VERSION}".tar.gz -o sshpass.tar.gz && \
tar -xvf sshpass.tar.gz && cd sshpass-"${SSHPASS_VERSION}" && ./configure && make install && cd .. && rm -rf sshpass-"${SSHPASS_VERSION}" && \
yum -y clean all && rm -rf /var/cache/yum

0 comments on commit 07aeab7

Please sign in to comment.