refactor(docker): build from current branch

This commit is contained in:
Bruno Wego 2019-06-04 20:10:02 -03:00
parent dd198a4778
commit cb403e0bde
2 changed files with 7 additions and 4 deletions

5
.dockerignore Normal file
View file

@ -0,0 +1,5 @@
**
!/share
!/src
!/CMakeLists.txt

View file

@ -3,16 +3,14 @@ FROM alpine:3.9 as build
WORKDIR /usr/src/minisign WORKDIR /usr/src/minisign
RUN apk add --no-cache \ RUN apk add --no-cache \
bash==4.4.19-r1 \
cmake==3.13.0-r0 \ cmake==3.13.0-r0 \
make==4.2.1-r2 \ make==4.2.1-r2 \
g++==8.3.0-r0 \ g++==8.3.0-r0 \
libsodium-dev==1.0.16-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 && \ RUN gcc -static -Os -s -o minisign src/*.c -lsodium
gcc -static -Os -s -o minisign src/*.c -lsodium
FROM scratch FROM scratch