From 50dc4fbd265b7eeeef596a03680c60cacdf136ea Mon Sep 17 00:00:00 2001 From: Riccardo Spagni Date: Sat, 3 Sep 2016 21:33:47 +0200 Subject: [PATCH] update Dockerfile bitmonero refs --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f6f4294..477c4942 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ MAINTAINER eiabea RUN set -e && \ apt-get update -q && \ apt-get install -q -y --no-install-recommends ca-certificates git && \ - git clone https://github.com/monero-project/bitmonero.git src && \ + git clone https://github.com/monero-project/monero.git src && \ apt-get purge -y git && \ apt-get clean -q -y && \ apt-get autoclean -q -y && \ @@ -23,11 +23,11 @@ RUN set -e && \ apt-get clean -q -y && \ apt-get autoclean -q -y && \ apt-get autoremove -q -y && \ - mkdir /bitmonero && \ - mv /src/build/release/bin/* /bitmonero && \ + mkdir /monero && \ + mv /src/build/release/bin/* /monero && \ rm -rf /src -WORKDIR /bitmonero +WORKDIR /monero # Contains the blockchain VOLUME /root/.bitmonero @@ -46,4 +46,4 @@ ENV RPC_BIND_PORT 18081 EXPOSE 18080 EXPOSE 18081 -CMD ./bitmonerod --log-level=$LOG_LEVEL --p2p-bind-ip=$P2P_BIND_IP --p2p-bind-port=$P2P_BIND_PORT --rpc-bind-ip=$RPC_BIND_IP --rpc-bind-port=$RPC_BIND_PORT \ No newline at end of file +CMD ./monerod --log-level=$LOG_LEVEL --p2p-bind-ip=$P2P_BIND_IP --p2p-bind-port=$P2P_BIND_PORT --rpc-bind-ip=$RPC_BIND_IP --rpc-bind-port=$RPC_BIND_PORT \ No newline at end of file