Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Multistage docker build, requires docker 17.05

# builder stage
FROM ubuntu:20.04 as builder
FROM ubuntu:mantic-20240216 as builder

RUN set -ex && \
apt-get update && \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN set -ex && \
fi

# runtime stage
FROM ubuntu:20.04
FROM ubuntu:mantic-20240216

RUN set -ex && \
apt-get update && \
Expand Down Expand Up @@ -63,4 +63,3 @@ USER monero

ENTRYPOINT ["monerod"]
CMD ["--p2p-bind-ip=0.0.0.0", "--p2p-bind-port=18080", "--rpc-bind-ip=0.0.0.0", "--rpc-bind-port=18081", "--non-interactive", "--confirm-external-bind"]