Commit ff719df3 authored by nimrod's avatar nimrod
Browse files

Install Keybase.

I don't really like this. In fact I don't like Keybase. The CLI adds
some Cron jobs. I tried the Snap package and it stays running in the
background when close the GUI (didn't see an exit option). I may go back
to the snap and revert this if I would need the GUI.
parent 279b8014
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ COPY --from=repo-key /gnupghome/google-cloud.gpg /usr/share/keyrings/google-clou
COPY google-cloud.sources /etc/apt/sources.list.d/
COPY --from=repo-key /gnupghome/heroku.gpg /usr/share/keyrings/heroku.gpg
COPY heroku.sources /etc/apt/sources.list.d/
# hadolint ignore=DL3008,DL3013
# hadolint ignore=DL3008,DL3013,DL3027
RUN apt-get update && \
    DEBIAN_FRONTEND=noninteractive apt-get install --yes --no-install-recommends \
        adb \
@@ -121,6 +121,9 @@ RUN apt-get update && \
        w3m-img \
        whois \
    && \
    wget https://prerelease.keybase.io/keybase_amd64.deb -O /tmp/keybase.deb && \
    apt install -y /tmp/keybase.deb && \
    rm /tmp/keybase.deb && \
    sed -i 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/; s/# en_IL UTF-8/en_IL UTF-8/; s/# he_IL.UTF-8 UTF-8/he_IL.UTF-8 UTF-8/;' /etc/locale.gen && \
    locale-gen && \
    python3 -m pip install --use-deprecated=legacy-resolver \