status-go-bots/_assets/Dockerfile

24 lines
616 B
Docker
Raw Normal View History

# Build status-go in a Go builder container
FROM golang:1.9-alpine as builder
ARG build_tags
RUN apk add --no-cache make gcc musl-dev linux-headers
WORKDIR /go/src/github.com/mandrigin/status-go-bots
ADD . .
RUN make allbots
# Copy the binary to the second image
FROM alpine:latest
RUN apk add --no-cache ca-certificates bash
COPY --from=builder /go/src/github.com/mandrigin/status-go-bots/pinger /usr/local/bin/
COPY --from=builder /go/src/github.com/mandrigin/status-go-bots/chanreader /usr/local/bin/
2018-02-26 22:23:56 +00:00
VOLUME ["/tmp/sg_bots"]
# 30304 is used for Discovery v5
EXPOSE 8080 8545 30303 30303/udp 30304/udp