break out compose and docker files for compile vs no-compile options

This commit is contained in:
lza_menace
2020-10-05 15:37:59 -07:00
parent 74d800614d
commit 7d31fda77d
6 changed files with 136 additions and 10 deletions

View File

@@ -0,0 +1,29 @@
FROM ubuntu:19.10 as og
ARG threads
WORKDIR /opt/monero
RUN apt-get update && apt-get install -y \
build-essential cmake pkg-config libboost-all-dev \
libssl-dev libzmq3-dev libunbound-dev libsodium-dev libpgm-dev git
RUN git clone https://github.com/monero-project/monero --branch=v0.17.0.1 --depth=1 .
RUN git submodule update --init --force
RUN make -j$threads
FROM ubuntu:19.10
WORKDIR /data
COPY --from=og /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/
COPY --from=og /opt/monero/build/Linux/_no_branch_/release/bin/monerod /bin/monerod
COPY --from=og /opt/monero/build/Linux/_no_branch_/release/bin/monero-wallet-cli /bin/monero-wallet-cli
COPY --from=og /opt/monero/build/Linux/_no_branch_/release/bin/monero-wallet-rpc /bin/monero-wallet-rpc
EXPOSE 18080
EXPOSE 18081
EXPOSE 18082
EXPOSE 18083