github.com/haliliceylan/bsc@v1.1.10-0.20220501224556-eb78d644ebcb/docker/Dockerfile.truffle (about)

     1  FROM ethereum/solc:0.6.4-alpine
     2  
     3  RUN apk add --d --no-cache ca-certificates npm nodejs bash alpine-sdk git
     4  
     5  RUN git clone https://github.com/binance-chain/canonical-upgradeable-bep20.git /usr/app/canonical-upgradeable-bep20
     6  
     7  WORKDIR /usr/app/canonical-upgradeable-bep20
     8  COPY docker/truffle-config.js /usr/app/canonical-upgradeable-bep20
     9  
    10  RUN npm install -g --unsafe-perm truffle@v5.1.14
    11  RUN npm install
    12  
    13  ENTRYPOINT [ "/bin/bash" ]