Bladeren bron

docs: GeoIP files are .mmdb rather than .dat now

closes #113, thanks to @cricsus
Ask Bjørn Hansen 5 jaren geleden
bovenliggende
commit
cb2a56d438
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -1,4 +1,4 @@
-FROM golang:1.10.1-alpine3.7 as compiler
+FROM golang:1.12.3-alpine3.9 as build
 
 RUN apk add --no-cache git
 WORKDIR /go/src/github.com/abh/geodns
@@ -12,5 +12,5 @@ RUN go build  -o /geodns
 
 
 FROM scratch
-COPY --from=compiler /geodns /geodns
+COPY --from=build /geodns /geodns
 ENTRYPOINT ["/geodns"]