mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 19:37:48 +03:00
refactor(docker): build from current branch
This commit is contained in:
parent
dd198a4778
commit
cb403e0bde
2 changed files with 7 additions and 4 deletions
5
.dockerignore
Normal file
5
.dockerignore
Normal file
|
@ -0,0 +1,5 @@
|
|||
**
|
||||
|
||||
!/share
|
||||
!/src
|
||||
!/CMakeLists.txt
|
|
@ -3,16 +3,14 @@ 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"]
|
||||
COPY ./ ./
|
||||
|
||||
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
|
||||
RUN gcc -static -Os -s -o minisign src/*.c -lsodium
|
||||
|
||||
|
||||
FROM scratch
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue