mirror of
https://git.wownero.com/lza_menace/docker-wownero.git
synced 2024-08-15 01:03:31 +00:00
remove mining shit
This commit is contained in:
parent
e1ad904f27
commit
447cb9edaf
24 changed files with 3208 additions and 5543 deletions
23
dockerfiles/wownerod_compile_simple
Normal file
23
dockerfiles/wownerod_compile_simple
Normal file
|
@ -0,0 +1,23 @@
|
|||
FROM ubuntu:22.04 as og
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
WORKDIR /opt/wownero
|
||||
|
||||
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://git.wownero.com/wownero/wownero --depth=1 --branch=v0.10.0.2 .
|
||||
|
||||
RUN make -j4
|
||||
|
||||
FROM ubuntu:21.04
|
||||
|
||||
WORKDIR /data
|
||||
|
||||
# Copy static executables and libs from initial container
|
||||
COPY --from=og /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/
|
||||
COPY --from=og /opt/wownero/build/Linux/_no_branch_/release/bin/wownerod /bin/wownerod
|
||||
COPY --from=og /opt/wownero/build/Linux/_no_branch_/release/bin/wownero-wallet-cli /bin/wownero-wallet-cli
|
||||
COPY --from=og /opt/wownero/build/Linux/_no_branch_/release/bin/wownero-wallet-rpc /bin/wownero-wallet-rpc
|
Loading…
Add table
Add a link
Reference in a new issue