Skip to content

Commit

Permalink
add ban list to compile option
Browse files Browse the repository at this point in the history
  • Loading branch information
lalanza808 committed Dec 13, 2024
1 parent 5f1b7eb commit a2aceee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dockerfiles/monero
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /opt/monero
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y tar wget bzip2

RUN wget -qO /ban_list.txt "https://raw.githubusercontent.com/Boog900/monero-ban-list/main/ban_list.txt"

RUN wget -qO ${MONERO_DL_FILE} ${MONERO_DL_URL} \
Expand Down
3 changes: 3 additions & 0 deletions dockerfiles/monero_compile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ RUN git submodule update --init --force

RUN make -j$threads

RUN wget -qO /ban_list.txt "https://raw.githubusercontent.com/Boog900/monero-ban-list/main/ban_list.txt"

FROM ubuntu:22.04

WORKDIR /data
Expand All @@ -23,6 +25,7 @@ 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
COPY --from=og /ban_list.txt /ban_list.txt

EXPOSE 18080
EXPOSE 18081
Expand Down

0 comments on commit a2aceee

Please sign in to comment.