mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2024-12-22 03:30:36 +00:00
20 lines
326 B
Docker
20 lines
326 B
Docker
FROM python:alpine3.14
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt setup.py ./
|
|
|
|
RUN apk add --update gcc libc-dev linux-headers
|
|
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY staking_deposit ./staking_deposit
|
|
|
|
RUN python3 setup.py install
|
|
|
|
ARG cli_command
|
|
|
|
ENTRYPOINT [ "python3", "./staking_deposit/deposit.py" ]
|
|
|
|
CMD [ $cli_command ]
|