github.com/silveraid/fabric-ca@v1.1.0-preview.0.20180127000700-71974f53ab08/images/fabric-ca-orderer/Dockerfile.in (about)

     1  #
     2  # Copyright IBM Corp. All Rights Reserved.
     3  #
     4  # SPDX-License-Identifier: Apache-2.0
     5  #
     6  FROM hyperledger/fabric-orderer:_FABRIC_TAG_
     7  COPY payload/fabric-ca-client /usr/local/bin
     8  ARG FABRIC_CA_DYNAMIC_LINK=false
     9  RUN chmod +x /usr/local/bin/fabric-ca-client
    10  RUN apt-get update && apt-get install -y netcat && rm -rf /var/cache/apt
    11  
    12  # libraries needed when image is built dynamically
    13  RUN if [ "$FABRIC_CA_DYNAMIC_LINK" = "true" ]; then apt-get install -y libltdl-dev; fi