-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
8 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
FROM debian:buster | ||
LABEL maintainer="Keybase <[email protected]>" | ||
|
||
|
||
# RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' \ | ||
# -e 's|security.debian.org|archive.debian.org/|g' \ | ||
# -e '/stretch-updates/d' /etc/apt/sources.list | ||
# RUN sed -i -e 's/deb.debian.org/archive.debian.org/g' /etc/apt/sources.list.d/backports.list | ||
|
||
# Install dependencies from the standard repos. | ||
# - Debian build requires 'fakeroot' and 'reprepro' (and 'dpkg-deb', but | ||
# that's installed by default). | ||
|
@@ -19,7 +13,7 @@ LABEL maintainer="Keybase <[email protected]>" | |
# - unzip because electron6 packager requires it | ||
RUN apt-get update | ||
RUN apt-get install -y fakeroot reprepro rpm createrepo git wget \ | ||
build-essential curl python python-pip gnupg1 unzip rsync | ||
build-essential curl python python-pip gnupg2 unzip rsync | ||
|
||
# Install s3cmd. See this issue for why we need a version newer than what's in | ||
# the Debian repos: https://github.com/s3tools/s3cmd/issues/437 | ||
|
@@ -44,6 +38,3 @@ RUN echo "$GOLANG_DOWNLOAD_SHA256 /root/go.tar.gz" | sha256sum --check --status | |
RUN tar -C /usr/local -xzf /root/go.tar.gz | ||
RUN rm /root/go.tar.gz | ||
ENV PATH "$PATH:/usr/local/go/bin" | ||
|
||
# Newer Debian gnupg1 provide `gpg1` only | ||
RUN ln -sf /usr/bin/gpg1 /usr/bin/gpg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters