2017-11-16 21:14:19 -07:00
|
|
|
# Multistage docker build, requires docker 17.05
|
|
|
|
|
|
|
|
# builder stage
|
2021-09-11 16:05:56 -06:00
|
|
|
FROM ubuntu:20.04 as builder
|
2017-11-16 21:14:19 -07:00
|
|
|
|
2018-03-18 17:07:10 -06:00
|
|
|
RUN set -ex && \
|
|
|
|
apt-get update && \
|
2021-09-11 16:05:56 -06:00
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends --yes install \
|
|
|
|
automake \
|
|
|
|
autotools-dev \
|
|
|
|
bsdmainutils \
|
|
|
|
build-essential \
|
2017-11-16 21:14:19 -07:00
|
|
|
ca-certificates \
|
2021-09-11 16:05:56 -06:00
|
|
|
ccache \
|
2017-11-16 21:14:19 -07:00
|
|
|
cmake \
|
2018-02-02 06:45:28 -07:00
|
|
|
curl \
|
2021-09-11 16:05:56 -06:00
|
|
|
git \
|
|
|
|
libtool \
|
|
|
|
pkg-config \
|
|
|
|
gperf
|
2018-12-04 14:01:03 -07:00
|
|
|
|
2017-11-16 21:14:19 -07:00
|
|
|
WORKDIR /src
|
|
|
|
COPY . .
|
2017-12-11 16:33:08 -07:00
|
|
|
|
|
|
|
ARG NPROC
|
2018-03-18 17:07:10 -06:00
|
|
|
RUN set -ex && \
|
2018-10-13 15:13:43 -06:00
|
|
|
git submodule init && git submodule update && \
|
2018-03-18 17:07:10 -06:00
|
|
|
rm -rf build && \
|
|
|
|
if [ -z "$NPROC" ] ; \
|
2021-09-11 16:05:56 -06:00
|
|
|
then make -j$(nproc) depends target=x86_64-linux-gnu ; \
|
|
|
|
else make -j$NPROC depends target=x86_64-linux-gnu ; \
|
2018-03-18 17:07:10 -06:00
|
|
|
fi
|
2017-11-16 21:14:19 -07:00
|
|
|
|
|
|
|
# runtime stage
|
2021-09-11 16:05:56 -06:00
|
|
|
FROM ubuntu:20.04
|
2017-02-23 15:55:37 -07:00
|
|
|
|
2018-03-18 17:07:10 -06:00
|
|
|
RUN set -ex && \
|
|
|
|
apt-get update && \
|
2017-11-17 23:45:39 -07:00
|
|
|
apt-get --no-install-recommends --yes install ca-certificates && \
|
2017-11-16 21:14:19 -07:00
|
|
|
apt-get clean && \
|
|
|
|
rm -rf /var/lib/apt
|
2021-09-11 16:05:56 -06:00
|
|
|
COPY --from=builder /src/build/x86_64-linux-gnu/release/bin /usr/local/bin/
|
2016-08-31 10:10:44 -06:00
|
|
|
|
2019-03-09 15:22:03 -07:00
|
|
|
# Create monero user
|
|
|
|
RUN adduser --system --group --disabled-password monero && \
|
|
|
|
mkdir -p /wallet /home/monero/.bitmonero && \
|
|
|
|
chown -R monero:monero /home/monero/.bitmonero && \
|
|
|
|
chown -R monero:monero /wallet
|
|
|
|
|
2016-08-31 10:10:44 -06:00
|
|
|
# Contains the blockchain
|
2019-03-09 15:22:03 -07:00
|
|
|
VOLUME /home/monero/.bitmonero
|
2016-08-31 10:10:44 -06:00
|
|
|
|
|
|
|
# Generate your wallet via accessing the container and run:
|
|
|
|
# cd /wallet
|
2017-02-23 15:55:37 -07:00
|
|
|
# monero-wallet-cli
|
2016-08-31 10:10:44 -06:00
|
|
|
VOLUME /wallet
|
|
|
|
|
|
|
|
EXPOSE 18080
|
|
|
|
EXPOSE 18081
|
|
|
|
|
2019-03-09 15:22:03 -07:00
|
|
|
# switch to user monero
|
|
|
|
USER monero
|
|
|
|
|
2018-03-18 17:07:10 -06:00
|
|
|
ENTRYPOINT ["monerod", "--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"]
|
2018-07-03 10:44:03 -06:00
|
|
|
|