22 lines
705 B
Plaintext
22 lines
705 B
Plaintext
# Build status-go in a Go builder container
|
|
FROM golang:1.13-alpine as builder
|
|
|
|
RUN apk add --no-cache make gcc musl-dev linux-headers
|
|
|
|
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 statusd-prune
|
|
|
|
# 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="statusd-prune is used to prune old messages stored by MailServer."
|
|
|
|
RUN apk add --no-cache ca-certificates bash
|
|
|
|
COPY --from=builder /go/src/github.com/status-im/status-go/build/bin/statusd-prune /usr/local/bin/
|
|
|
|
CMD ["statusd-prune"]
|