mirror of https://github.com/waku-org/nwaku.git
90 lines
2.6 KiB
Docker
90 lines
2.6 KiB
Docker
# BUILD NIM APP ----------------------------------------------------------------
|
|
|
|
# alpine:edge supports building rust binaries, alpine:3.16 doesn't for some reason
|
|
FROM alpine@sha256:880fafbab5a7602db21ac37f0d17088a29a9a48f98d581f01ce17312c22ccbb5 AS nim-build
|
|
|
|
ARG NIMFLAGS
|
|
ARG MAKE_TARGET=wakunode2
|
|
ARG NIM_COMMIT
|
|
ARG LOG_LEVEL=TRACE
|
|
|
|
# Get build tools and required header files
|
|
RUN apk add --no-cache bash git build-base pcre-dev linux-headers curl jq rust cargo
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
# Ran separately from 'make' to avoid re-doing
|
|
RUN git submodule update --init --recursive
|
|
|
|
# Slowest build step for the sake of caching layers
|
|
RUN make -j$(nproc) deps QUICK_AND_DIRTY_COMPILER=1 ${NIM_COMMIT}
|
|
|
|
# Build the final node binary
|
|
RUN make -j$(nproc) ${NIM_COMMIT} $MAKE_TARGET LOG_LEVEL=${LOG_LEVEL} NIMFLAGS="${NIMFLAGS}"
|
|
|
|
|
|
# PRODUCTION IMAGE -------------------------------------------------------------
|
|
|
|
FROM alpine:3.16 as prod
|
|
|
|
ARG MAKE_TARGET=wakunode2
|
|
|
|
LABEL maintainer="jakub@status.im"
|
|
LABEL source="https://github.com/waku-org/nwaku"
|
|
LABEL description="Wakunode: Waku client"
|
|
LABEL commit="unknown"
|
|
|
|
# DevP2P, LibP2P, and JSON RPC ports
|
|
EXPOSE 30303 60000 8545
|
|
|
|
# Referenced in the binary
|
|
RUN apk add --no-cache libgcc pcre-dev libpq-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
|
|
|
|
# Copy to separate location to accomodate different MAKE_TARGET values
|
|
COPY --from=nim-build /app/build/$MAKE_TARGET /usr/local/bin/
|
|
|
|
# Copy migration scripts for DB upgrades
|
|
COPY --from=nim-build /app/migrations/ /app/migrations/
|
|
|
|
# Symlink the correct wakunode binary
|
|
RUN ln -sv /usr/local/bin/$MAKE_TARGET /usr/bin/wakunode
|
|
|
|
ENTRYPOINT ["/usr/bin/wakunode"]
|
|
|
|
# By default just show help if called without arguments
|
|
CMD ["--help"]
|
|
|
|
|
|
# DEBUG IMAGE ------------------------------------------------------------------
|
|
|
|
# Build debug tools: heaptrack
|
|
FROM alpine:3.16 AS heaptrack-build
|
|
|
|
RUN apk update
|
|
RUN apk add -- gdb git g++ make cmake zlib-dev boost-dev libunwind-dev
|
|
RUN git clone https://github.com/KDE/heaptrack.git /heaptrack
|
|
|
|
WORKDIR /heaptrack/build
|
|
# going to a commit that builds properly. We will revisit this for new releases
|
|
RUN git reset --hard f9cc35ebbdde92a292fe3870fe011ad2874da0ca
|
|
RUN cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
RUN make -j$(nproc)
|
|
|
|
|
|
# Debug image
|
|
FROM prod AS debug
|
|
|
|
RUN apk add --no-cache gdb libunwind
|
|
|
|
# Add heaptrack
|
|
COPY --from=heaptrack-build /heaptrack/build/ /heaptrack/build/
|
|
|
|
ENV LD_LIBRARY_PATH=/heaptrack/build/lib/heaptrack/
|
|
RUN ln -s /heaptrack/build/bin/heaptrack /usr/local/bin/heaptrack
|
|
|
|
ENTRYPOINT ["/heaptrack/build/bin/heaptrack", "/usr/bin/wakunode"]
|