erc20-faucet

ERC20 token faucet
Info | Log | Files | Refs

Dockerfile (234B)


      1 FROM grassrootseconomics:bancor
      2 
      3 ARG pip_extra_index_url=https://pip.grassrootseconomics.net:8433
      4 
      5 COPY ./python/ ./erc20-single-shot-faucet
      6 
      7 RUN cd erc20-single-shot-faucet && \
      8 	pip install --extra-index-url $pip_extra_index_url .
      9