mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-16 15:58:17 +00:00
31 lines
731 B
Docker
31 lines
731 B
Docker
FROM ubuntu:22.04
|
|
|
|
ENV LANG=C.UTF-8 \
|
|
DEBIAN_FRONTEND=noninteractive \
|
|
DATADIRS="/coindata"
|
|
|
|
RUN apt-get update; \
|
|
apt-get install -y git python3-pip gnupg make g++ autoconf automake libtool pkg-config gosu tzdata;
|
|
|
|
# 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"]
|