Compare commits

...

2 commits

Author SHA1 Message Date
62dd09040e
update tags
All checks were successful
continuous-integration/drone/push Build is passing
2020-08-14 19:10:47 -05:00
f3696cdc6b
Switch to maintained fork of osslsigncode 2020-08-14 19:10:02 -05:00
2 changed files with 6 additions and 15 deletions

View file

@ -19,14 +19,10 @@ steps:
image: plugins/docker image: plugins/docker
settings: settings:
repo: jcollie/osslsigncode repo: jcollie/osslsigncode
build_args:
- VERSION=1.7.1
- SHA256_HASH=f9a8cdb38b9c309326764ebc937cba1523a3a751a7ab05df3ecc99d18ae466c9
username: username:
from_secret: docker_username from_secret: docker_username
password: password:
from_secret: docker_password from_secret: docker_password
tags: tags:
- latest - latest
- '1.7.1' - '2.0'
- '1.7'

View file

@ -1,21 +1,16 @@
# Originally from: # Originally from:
# https://raw.githubusercontent.com/giantswarm/signcode-util/master/Dockerfile # https://raw.githubusercontent.com/giantswarm/signcode-util/master/Dockerfile
FROM alpine:3.6 AS base FROM alpine AS base
RUN apk add --no-cache curl libgsf openssl RUN apk add --no-cache curl libgsf openssl
FROM base AS build FROM base AS build
ARG VERSION RUN apk add --update autoconf automake build-base curl-dev git libgsf-dev libtool openssl-dev
ARG SHA256_HASH RUN git clone https://github.com/mtrojnar/osslsigncode.git
WORKDIR /osslsigncode
RUN apk add --update autoconf build-base curl-dev libgsf-dev openssl-dev RUN ./autogen.sh
RUN curl -s -L https://downloads.sourceforge.net/project/osslsigncode/osslsigncode/osslsigncode-$VERSION.tar.gz > osslsigncode-$VERSION.tar.gz
RUN echo "$SHA256_HASH osslsigncode-$VERSION.tar.gz" > SHA256SUM
RUN sha256sum -c SHA256SUM
RUN tar xzf osslsigncode-$VERSION.tar.gz
WORKDIR /osslsigncode-$VERSION
RUN ./configure RUN ./configure
RUN make RUN make
RUN make install RUN make install