You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
FROM python:3.7-alpine3.7
|
|
|
|
LABEL maintainer="Luke Childs <lukechilds123@gmail.com>"
|
|
|
|
|
|
|
|
COPY ./bin /usr/local/bin
|
|
|
|
COPY ./VERSION /tmp
|
|
|
|
|
|
|
|
RUN VERSION=$(cat /tmp/VERSION) && \
|
|
|
|
chmod a+x /usr/local/bin/* && \
|
|
|
|
apk add --no-cache git build-base openssl && \
|
|
|
|
apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main leveldb-dev && \
|
|
|
|
pip install aiohttp pylru plyvel && \
|
|
|
|
git clone -b $VERSION https://github.com/kyuupichan/electrumx.git && \
|
|
|
|
cd electrumx && \
|
|
|
|
python setup.py install && \
|
|
|
|
apk del git build-base && \
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
|
|
|
VOLUME ["/data"]
|
|
|
|
ENV HOME /data
|
|
|
|
ENV ALLOW_ROOT 1
|
|
|
|
ENV DB_DIRECTORY /data
|
|
|
|
ENV TCP_PORT=50001
|
|
|
|
ENV SSL_PORT=50002
|
|
|
|
ENV SSL_CERTFILE ${DB_DIRECTORY}/electrumx.crt
|
|
|
|
ENV SSL_KEYFILE ${DB_DIRECTORY}/electrumx.key
|
|
|
|
ENV HOST ""
|
|
|
|
WORKDIR /data
|
|
|
|
|
|
|
|
EXPOSE 50001 50002
|
|
|
|
|
|
|
|
CMD ["init"]
|