mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2025-01-03 09:37:39 +00:00
16 lines
275 B
Docker
16 lines
275 B
Docker
|
FROM python:3.7-alpine
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY requirements.txt setup.py ./
|
||
|
|
||
|
COPY eth2deposit ./eth2deposit
|
||
|
|
||
|
RUN apk add --update gcc libc-dev linux-headers
|
||
|
|
||
|
RUN pip3 install -r requirements.txt
|
||
|
|
||
|
RUN python3 setup.py install
|
||
|
|
||
|
ENTRYPOINT [ "python3", "./eth2deposit/deposit.py" ]
|