2018-01-17 22:40:14 +01:00
|
|
|
# Build status-go in a Go builder container
|
2024-05-17 15:51:51 +02:00
|
|
|
FROM golang:1.20-alpine3.18 as builder
|
|
|
|
|
2017-05-12 15:04:32 +03:00
|
|
|
|
2022-07-26 12:42:19 +02:00
|
|
|
RUN apk add --no-cache make gcc g++ musl-dev linux-headers
|
2018-08-24 12:25:07 +02:00
|
|
|
|
2018-01-30 12:51:48 +01:00
|
|
|
ARG build_tags
|
2018-06-08 11:20:30 +02:00
|
|
|
ARG build_flags
|
2023-04-26 20:17:16 +02:00
|
|
|
ARG build_target=statusgo
|
2018-01-30 12:51:48 +01:00
|
|
|
|
2018-01-03 19:50:19 +01:00
|
|
|
RUN mkdir -p /go/src/github.com/status-im/status-go
|
2020-03-10 13:40:35 +01:00
|
|
|
WORKDIR /go/src/github.com/status-im/status-go
|
|
|
|
ADD . .
|
2023-11-23 15:55:13 +01:00
|
|
|
RUN make $build_target BUILD_TAGS="$build_tags" BUILD_FLAGS="$build_flags" SHELL="/bin/sh"
|
2017-05-12 15:04:32 +03:00
|
|
|
|
2018-01-03 19:50:19 +01:00
|
|
|
# Copy the binary to the second image
|
2024-05-17 15:51:51 +02:00
|
|
|
FROM alpine:3.18
|
2018-01-03 19:50:19 +01:00
|
|
|
|
2023-04-26 20:17:16 +02:00
|
|
|
ARG build_target=statusgo
|
|
|
|
|
2018-08-24 12:25:07 +02:00
|
|
|
LABEL maintainer="support@status.im"
|
2018-07-10 11:29:40 +02:00
|
|
|
LABEL source="https://github.com/status-im/status-go"
|
|
|
|
LABEL description="status-go is an underlying part of Status - a browser, messenger, and gateway to a decentralized world."
|
|
|
|
|
2022-07-26 12:42:19 +02:00
|
|
|
RUN apk add --no-cache ca-certificates bash libgcc libstdc++
|
2018-08-24 12:25:07 +02:00
|
|
|
RUN mkdir -p /static/keys
|
2018-01-30 12:51:48 +01:00
|
|
|
|
2023-04-26 20:17:16 +02:00
|
|
|
COPY --from=builder /go/src/github.com/status-im/status-go/build/bin/$build_target /usr/local/bin/
|
2018-01-03 19:50:19 +01:00
|
|
|
COPY --from=builder /go/src/github.com/status-im/status-go/static/keys/* /static/keys/
|
|
|
|
|
2023-04-26 20:17:16 +02:00
|
|
|
RUN ln -s /usr/local/bin/$build_target /usr/local/bin/entrypoint
|
|
|
|
|
2018-01-03 19:50:19 +01:00
|
|
|
# 30304 is used for Discovery v5
|
|
|
|
EXPOSE 8080 8545 30303 30303/udp 30304/udp
|
2018-07-10 11:29:40 +02:00
|
|
|
|
2023-04-26 20:17:16 +02:00
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint"]
|
2018-07-11 13:45:27 +02:00
|
|
|
CMD ["--help"]
|