Document signed binaries

This commit is contained in:
Thomas Orozco 2016-01-26 21:56:24 -05:00
parent 44b5675f0e
commit 551d271823
2 changed files with 28 additions and 0 deletions

View File

@ -56,6 +56,20 @@ Arguments for Tini itself should be passed like `-v` in the following example:
*NOTE: The binary linked above is a 64-bit dynamically-linked binary.*
### Signed binaries ###
The `tini` and `tini-static` binaries are signed using the key `0527A9B7`.
You can verify their signatures using `gpg` (which you may install using
your package manager):
ENV TINI_VERSION v0.8.4
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini.asc /tini.asc
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 0527A9B7 \
&& gpg --verify /tini.asc
### Alpine Linux Package ###
On Alpine Linux, you can use the following command to install Tini (currently

View File

@ -56,6 +56,20 @@ Arguments for Tini itself should be passed like `-v` in the following example:
*NOTE: The binary linked above is a 64-bit dynamically-linked binary.*
### Signed binaries ###
The `tini` and `tini-static` binaries are signed using the key `0527A9B7`.
You can verify their signatures using `gpg` (which you may install using
your package manager):
ENV TINI_VERSION v@tini_VERSION_MAJOR@.@tini_VERSION_MINOR@.@tini_VERSION_PATCH@
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini.asc /tini.asc
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 0527A9B7 \
&& gpg --verify /tini.asc
### Alpine Linux Package ###
On Alpine Linux, you can use the following command to install Tini (currently