mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-16 07:47:48 +00:00
38 lines
1 KiB
Docker
38 lines
1 KiB
Docker
FROM ubuntu:22.04
|
|
|
|
ENV LANG=C.UTF-8 \
|
|
DEBIAN_FRONTEND=noninteractive \
|
|
DATADIRS="/coindata"
|
|
|
|
RUN apt-get update; \
|
|
apt-get install -y wget python3-pip gnupg unzip make g++ autoconf automake libtool pkg-config gosu tzdata;
|
|
|
|
ARG COINCURVE_VERSION=v0.2
|
|
RUN wget -O coincurve-anonswap.zip https://github.com/tecnovert/coincurve/archive/refs/tags/anonswap_$COINCURVE_VERSION.zip && \
|
|
unzip coincurve-anonswap.zip && \
|
|
mv ./coincurve-anonswap_$COINCURVE_VERSION ./coincurve-anonswap && \
|
|
cd coincurve-anonswap && \
|
|
python3 setup.py install --force
|
|
|
|
# Install requirements first so as to skip in subsequent rebuilds
|
|
COPY ./requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . basicswap-master
|
|
RUN cd basicswap-master; \
|
|
pip3 install .;
|
|
|
|
RUN useradd -ms /bin/bash swap_user && \
|
|
mkdir /coindata && chown swap_user -R /coindata
|
|
|
|
# html port
|
|
EXPOSE 12700
|
|
# websocket port
|
|
EXPOSE 11700
|
|
|
|
VOLUME /coindata
|
|
|
|
COPY ./docker/entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["basicswap-run", "-datadir=/coindata"]
|