14 lines
361 B
Docker
14 lines
361 B
Docker
FROM golang:1.11-alpine3.8 as builder
|
|
WORKDIR /data
|
|
RUN apk add --no-cache make git build-base
|
|
COPY . .
|
|
RUN go build -o geoip .
|
|
|
|
FROM alpine:latest
|
|
WORKDIR /data
|
|
COPY --from=builder /data/geoip /usr/bin
|
|
COPY scripts/download-geodb.sh /usr/bin
|
|
RUN apk add --no-cache ca-certificates wget curl && \
|
|
/usr/bin/download-geodb.sh
|
|
EXPOSE 10230
|
|
CMD ["/usr/bin/geoip"] |