Host-customized fork of https://github.com/tecnovert/basicswap/
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.
30 lines
761 B
30 lines
761 B
FROM ubuntu:18.10 |
|
|
|
ENV LANG=C.UTF-8 \ |
|
DATADIRS="/coindata" |
|
|
|
RUN apt-get update; \ |
|
apt-get install -y wget python3-pip gnupg unzip protobuf-compiler; |
|
|
|
# TODO: move coindata dir out of src dir |
|
RUN wget -O bs.zip https://github.com/tecnovert/basicswap/archive/master.zip; \ |
|
unzip bs.zip; \ |
|
cd basicswap-master; \ |
|
protoc -I=basicswap --python_out=basicswap basicswap/messages.proto; \ |
|
pip3 install .; |
|
|
|
# Download binaries, these will be part of the docker image |
|
RUN basicswap-prepare -datadir=/opt -preparebinonly |
|
|
|
RUN useradd -ms /bin/bash user && \ |
|
mkdir /coindata && chown user -R /coindata |
|
|
|
USER user |
|
WORKDIR /home/user |
|
|
|
# Expose html port |
|
EXPOSE 12700 |
|
|
|
VOLUME /coindata |
|
|
|
ENTRYPOINT ["basicswap-run", "-datadir=/coindata/basicswap"]
|
|
|