erc20-faucet

ERC20 token faucet
Log | Files | Refs

commit 8c92d67216088844d64be8c1e77cef99622d0f65
parent 87b9c2fa9e7938bf38b3a2ade4123bdf1c02850a
Author: nolash <dev@holbrook.no>
Date:   Wed,  9 Dec 2020 13:35:42 +0100

Add dockerfile

Diffstat:
ADockerfile | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/Dockerfile b/Dockerfile @@ -0,0 +1,9 @@ +FROM grassrootseconomics:bancor + +ARG pip_extra_index_url=https://pip.grassrootseconomics.net:8433 + +COPY ./python/ ./erc20-single-shot-faucet + +RUN cd erc20-single-shot-faucet && \ + pip install --extra-index-url $pip_extra_index_url . +