2020-05-26 12:04:40 +00:00
|
|
|
# BUILD IMAGE --------------------------------------------------------
|
2020-09-21 19:27:22 +00:00
|
|
|
|
|
|
|
FROM alpine:3.12 AS nim-build
|
2020-05-26 12:04:40 +00:00
|
|
|
|
|
|
|
ARG NIM_PARAMS
|
2020-09-09 18:14:07 +00:00
|
|
|
ARG MAKE_TARGET=wakunode
|
2020-05-26 12:04:40 +00:00
|
|
|
|
|
|
|
# Get build tools and required header files
|
2021-03-01 14:19:58 +00:00
|
|
|
RUN apk add --no-cache bash git rust cargo build-base pcre-dev linux-headers
|
2020-05-26 12:04:40 +00:00
|
|
|
|
|
|
|
WORKDIR /app
|
2020-09-21 19:27:22 +00:00
|
|
|
COPY . .
|
2020-05-26 12:04:40 +00:00
|
|
|
|
|
|
|
# Ran separately from 'make' to avoid re-doing
|
|
|
|
RUN git submodule update --init --recursive
|
|
|
|
|
2020-09-21 19:27:22 +00:00
|
|
|
# Slowest build step for the sake of caching layers
|
|
|
|
RUN make -j$(nproc) deps
|
|
|
|
|
|
|
|
# Build the final node binary
|
|
|
|
RUN make -j$(nproc) $MAKE_TARGET NIM_PARAMS="$NIM_PARAMS"
|
2020-05-26 12:04:40 +00:00
|
|
|
|
|
|
|
# ACTUAL IMAGE -------------------------------------------------------
|
2020-09-21 19:27:22 +00:00
|
|
|
|
|
|
|
FROM alpine:3.12
|
|
|
|
|
2020-10-20 02:36:27 +00:00
|
|
|
ARG MAKE_TARGET=wakunode2
|
2020-05-26 12:04:40 +00:00
|
|
|
|
|
|
|
LABEL maintainer="jakub@status.im"
|
|
|
|
LABEL source="https://github.com/status-im/nim-waku"
|
|
|
|
LABEL description="Wakunode: Waku and Whisper client"
|
|
|
|
|
2020-09-21 19:27:22 +00:00
|
|
|
# DevP2P, LibP2P, and JSON RPC ports
|
|
|
|
EXPOSE 30303 60000 8545
|
2020-05-26 12:04:40 +00:00
|
|
|
|
|
|
|
# Referenced in the binary
|
|
|
|
RUN apk add --no-cache libgcc pcre-dev
|
|
|
|
|
|
|
|
# Fix for 'Error loading shared library libpcre.so.3: No such file or directory'
|
|
|
|
RUN ln -s /usr/lib/libpcre.so /usr/lib/libpcre.so.3
|
|
|
|
|
2020-09-21 19:27:22 +00:00
|
|
|
# Copy to separate location to accomodate different MAKE_TARGET values
|
|
|
|
COPY --from=nim-build /app/build/$MAKE_TARGET /usr/local/bin/
|
|
|
|
|
2021-06-10 07:18:52 +00:00
|
|
|
# If rln enabled: fix for 'Error loading shared library vendor/rln/target/debug/librln.so: No such file or directory'
|
|
|
|
# COPY --from=nim-build /app/vendor/rln/target/debug/librln.so vendor/rln/target/debug/librln.so
|
2021-03-04 15:55:27 +00:00
|
|
|
|
2020-09-21 19:27:22 +00:00
|
|
|
# Symlink the correct wakunode binary
|
|
|
|
RUN ln -sv /usr/local/bin/$MAKE_TARGET /usr/bin/wakunode
|
2020-05-26 12:04:40 +00:00
|
|
|
|
2020-11-04 15:21:17 +00:00
|
|
|
ENTRYPOINT ["/usr/bin/wakunode"]
|
2020-05-26 12:04:40 +00:00
|
|
|
# By default just show help if called without arguments
|
|
|
|
CMD ["--help"]
|