clean up
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jeffrey C. Ollie 2020-08-14 12:01:52 -05:00
parent fe3d11f72a
commit cf07868b84
Signed by: jeff
GPG key ID: 6F86035A6D97044E
2 changed files with 10 additions and 4 deletions

View file

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

View file

@ -3,12 +3,12 @@
FROM alpine:3.6 AS base
RUN apk add --no-cache curl openssl libgsf
RUN apk add --no-cache curl libgsf openssl
FROM base AS build
ARG VERSION=1.7.1
ARG SHA256_HASH=f9a8cdb38b9c309326764ebc937cba1523a3a751a7ab05df3ecc99d18ae466c9
ARG VERSION
ARG SHA256_HASH
RUN apk add --update autoconf build-base curl-dev libgsf-dev openssl-dev
RUN curl -s -L https://downloads.sourceforge.net/project/osslsigncode/osslsigncode/osslsigncode-$VERSION.tar.gz > osslsigncode-$VERSION.tar.gz