mirror of https://github.com/krallin/tini.git
Document signed binaries
This commit is contained in:
parent
44b5675f0e
commit
551d271823
14
README.md
14
README.md
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue