bsc/docker/Dockerfile.truffle
2021-10-20 18:56:42 +08:00

14 lines
431 B
Docker

FROM ethereum/solc:0.6.4-alpine
RUN apk add --d --no-cache ca-certificates npm nodejs bash alpine-sdk git
RUN git clone https://github.com/binance-chain/canonical-upgradeable-bep20.git /usr/app/canonical-upgradeable-bep20
WORKDIR /usr/app/canonical-upgradeable-bep20
COPY docker/truffle-config.js /usr/app/canonical-upgradeable-bep20
RUN npm install -g --unsafe-perm truffle@v5.1.14
RUN npm install
ENTRYPOINT [ "/bin/bash" ]