github.com/jfrog/jfrog-cli-go@v1.22.1-0.20200318093948-4826ef344ffd/sign/Dockerfile (about)

     1  # This Dockerfile sets up a container, which is used to sign the Windows binary of JFrog CLI.
     2  
     3  FROM ubuntu:16.04
     4  RUN apt-get -y update \
     5    && apt-get install -y curl \
     6    && apt-get install -y build-essential \ 
     7    && apt-get install -y libssl-dev \
     8    && apt-get install -y libcurl4-gnutls-dev \
     9    && apt-get install -y autoconf
    10  
    11  RUN curl -sL https://downloads.sourceforge.net/project/osslsigncode/osslsigncode/osslsigncode-1.7.1.tar.gz > osslsigncode.tar.gz
    12  RUN tar -xvf osslsigncode.tar.gz
    13  RUN cd osslsigncode-1.7.1 && ./configure && make && make install
    14  
    15  ADD . /workspace