2020-05-26 12:04:40 +00:00
|
|
|
# BUILD IMAGE --------------------------------------------------------
|
|
|
|
FROM alpine:3.11 AS nim-build
|
|
|
|
|
|
|
|
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
|
|
|
|
RUN apk add --no-cache bash build-base pcre-dev linux-headers git
|
|
|
|
|
|
|
|
RUN mkdir /app
|
|
|
|
WORKDIR /app
|
|
|
|
ADD . .
|
|
|
|
|
|
|
|
# Ran separately from 'make' to avoid re-doing
|
|
|
|
RUN git submodule update --init --recursive
|
|
|
|
|
|
|
|
# Build the node binary
|
2020-09-09 18:14:07 +00:00
|
|
|
RUN make -j$(nproc) ${MAKE_TARGET} NIM_PARAMS="${NIM_PARAMS}"
|
2020-05-26 12:04:40 +00:00
|
|
|
|
|
|
|
# ACTUAL IMAGE -------------------------------------------------------
|
|
|
|
FROM alpine:3.11
|
|
|
|
|
|
|
|
LABEL maintainer="jakub@status.im"
|
|
|
|
LABEL source="https://github.com/status-im/nim-waku"
|
|
|
|
LABEL description="Wakunode: Waku and Whisper client"
|
|
|
|
|
|
|
|
EXPOSE 1234
|
|
|
|
|
|
|
|
# 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-11 12:02:13 +00:00
|
|
|
COPY --from=nim-build /app/build/${MAKE_TARGET} /usr/bin/wakunode
|
2020-05-26 12:04:40 +00:00
|
|
|
|
2020-09-11 12:02:13 +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"]
|