34 lines
1.0 KiB
Docker
34 lines
1.0 KiB
Docker
# Build status-go in a Go builder container
|
|
FROM golang:1.10-alpine as builder
|
|
|
|
RUN apk add --no-cache make gcc musl-dev linux-headers
|
|
|
|
ARG build_tags
|
|
ARG build_flags
|
|
|
|
RUN mkdir -p /go/src/github.com/status-im/status-go
|
|
ADD . /go/src/github.com/status-im/status-go
|
|
RUN cd /go/src/github.com/status-im/status-go && \
|
|
make statusgo \
|
|
BUILD_TAGS="$build_tags" \
|
|
BUILD_FLAGS="$build_flags"
|
|
|
|
# Copy the binary to the second image
|
|
FROM alpine:latest
|
|
|
|
LABEL maintainer="support@status.im"
|
|
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."
|
|
|
|
RUN apk add --no-cache ca-certificates bash
|
|
RUN mkdir -p /static/keys
|
|
|
|
COPY --from=builder /go/src/github.com/status-im/status-go/build/bin/statusd /usr/local/bin/
|
|
COPY --from=builder /go/src/github.com/status-im/status-go/static/keys/* /static/keys/
|
|
|
|
# 30304 is used for Discovery v5
|
|
EXPOSE 8080 8545 30303 30303/udp 30304/udp
|
|
|
|
ENTRYPOINT ["/usr/local/bin/statusd"]
|
|
CMD ["--help"]
|