go-waku/Dockerfile
Jakub Sokołowski 2a14fe3f6b
Dockerfile: update to GO 1.18, update Alpine
Otherwise we get build errors like:
```
note: module requires Go 1.18
```
https://ci.infra.status.im/job/go-waku/job/deploy-test/28/

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-10-26 15:31:14 +02:00

37 lines
862 B
Docker

# BUILD IMAGE --------------------------------------------------------
FROM golang:1.18-alpine3.16 as builder
# Get build tools and required header files
RUN apk add --no-cache build-base
RUN apk add --no-cache bash
RUN apk add --no-cache git
WORKDIR /app
COPY . .
# Build the final node binary
RUN make -j$(nproc) build
# ACTUAL IMAGE -------------------------------------------------------
FROM alpine:3.16
ARG GIT_COMMIT=unknown
LABEL maintainer="richard@status.im"
LABEL source="https://github.com/status-im/go-waku"
LABEL description="go-waku: Waku V2 node"
LABEL commit=$GIT_COMMIT
# color, nocolor, json
ENV GOLOG_LOG_FMT=nocolor
# 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"]