mirror of https://github.com/status-im/go-waku.git
31 lines
730 B
Docker
31 lines
730 B
Docker
# BUILD IMAGE --------------------------------------------------------
|
|
FROM golang:1.20 as builder
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
# Build the final node binary
|
|
RUN make -j$(nproc) build
|
|
|
|
# ACTUAL IMAGE -------------------------------------------------------
|
|
|
|
FROM debian:12.1-slim
|
|
|
|
LABEL maintainer="romanzac@status.im"
|
|
LABEL source="https://github.com/waku-org/go-waku"
|
|
LABEL description="go-waku: Waku V2 node - test"
|
|
|
|
# color, nocolor, json
|
|
ENV GOLOG_LOG_FMT=nocolor
|
|
|
|
RUN apt update && apt install -y ca-certificates
|
|
|
|
# go-waku default ports
|
|
EXPOSE 9000 30303 60000 60001 8008 8009
|
|
|
|
COPY --from=builder /app/build/waku /usr/bin/waku
|
|
|
|
ENTRYPOINT ["/usr/bin/waku"]
|
|
# By default just show help if called without arguments
|
|
CMD ["--help"]
|