bsc/docker/Dockerfile.truffle

14 lines
431 B
Docker
Raw Permalink Normal View History

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
2021-10-20 18:29:40 +08:00
RUN npm install -g --unsafe-perm truffle@v5.1.14
RUN npm install
ENTRYPOINT [ "/bin/bash" ]