mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2024-10-01 01:35:42 -04:00
22 lines
468 B
Docker
22 lines
468 B
Docker
FROM openjdk:11
|
|
|
|
RUN set -ex && \
|
|
apt update && \
|
|
apt --no-install-recommends --yes install \
|
|
make \
|
|
git
|
|
|
|
RUN set -ex && adduser --system --group --disabled-password haveno && \
|
|
mkdir -p /home/haveno && \
|
|
chown -R haveno:haveno /home/haveno
|
|
|
|
USER haveno
|
|
|
|
RUN set -ex && git clone https://github.com/haveno-dex/haveno.git /home/haveno/haveno
|
|
|
|
WORKDIR /home/haveno/haveno
|
|
|
|
RUN set -ex && make skip-tests
|
|
|
|
ENTRYPOINT [ "./haveno-daemon" ]
|