mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
chore(repo): added docker support
This commit is contained in:
parent
507c6f6781
commit
82637fd04b
1 changed files with 22 additions and 0 deletions
22
Dockerfile
Normal file
22
Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
|||
FROM alpine:3.9 as build
|
||||
|
||||
WORKDIR /usr/src/minisign
|
||||
|
||||
RUN apk add --no-cache \
|
||||
bash==4.4.19-r1 \
|
||||
cmake==3.13.0-r0 \
|
||||
make==4.2.1-r2 \
|
||||
g++==8.3.0-r0 \
|
||||
libsodium-dev==1.0.16-r0
|
||||
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
||||
RUN wget -O - 'https://github.com/jedisct1/minisign/archive/0.8.tar.gz' | tar -xz --strip-components 1 && \
|
||||
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"]
|
Loading…
Add table
Add a link
Reference in a new issue