first
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user