mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 11:27:42 +03:00
Merge branch 'master' of github.com:jedisct1/minisign
* 'master' of github.com:jedisct1/minisign: Added docker support (#55)
This commit is contained in:
commit
c4aad021da
3 changed files with 27 additions and 0 deletions
5
.dockerignore
Normal file
5
.dockerignore
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
**
|
||||||
|
|
||||||
|
!/share
|
||||||
|
!/src
|
||||||
|
!/CMakeLists.txt
|
18
Dockerfile
Normal file
18
Dockerfile
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
FROM alpine:3.9 as build
|
||||||
|
|
||||||
|
WORKDIR /usr/src/minisign
|
||||||
|
|
||||||
|
RUN apk add --no-cache \
|
||||||
|
g++==8.3.0-r0 \
|
||||||
|
libsodium-dev==1.0.16-r0
|
||||||
|
|
||||||
|
COPY ./ ./
|
||||||
|
|
||||||
|
RUN gcc -static -Os -s -o minisign src/*.c -lsodium
|
||||||
|
|
||||||
|
|
||||||
|
FROM scratch
|
||||||
|
|
||||||
|
COPY --from=build /usr/src/minisign/minisign /usr/local/bin/
|
||||||
|
|
||||||
|
ENTRYPOINT ["/usr/local/bin/minisign"]
|
|
@ -53,6 +53,10 @@ Minisign is also available on Ubuntu as a PPA:
|
||||||
|
|
||||||
$ [sudo] add-apt-repository ppa:dysfunctionalprogramming/minisign
|
$ [sudo] add-apt-repository ppa:dysfunctionalprogramming/minisign
|
||||||
|
|
||||||
|
Minisign is also available with docker:
|
||||||
|
|
||||||
|
$ docker run -i --rm jedisct1/minisign
|
||||||
|
|
||||||
Additional tools, libraries and implementations
|
Additional tools, libraries and implementations
|
||||||
-----------------------------------------------
|
-----------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue