forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
776 B
25 lines
776 B
FROM golang:1.9
|
|
|
|
COPY cmd/freegeoip/public /var/www
|
|
|
|
ADD . /go/src/github.com/apilayer/freegeoip
|
|
RUN \
|
|
cd /go/src/github.com/apilayer/freegeoip/cmd/freegeoip && \
|
|
go get -d && go install && \
|
|
apt-get update && apt-get install -y libcap2-bin && \
|
|
setcap cap_net_bind_service=+ep /go/bin/freegeoip && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/* && \
|
|
useradd -ms /bin/bash freegeoip
|
|
|
|
USER freegeoip
|
|
ENTRYPOINT ["/go/bin/freegeoip"]
|
|
|
|
EXPOSE 8080
|
|
|
|
# CMD instructions:
|
|
# Add "-use-x-forwarded-for" if your server is behind a reverse proxy
|
|
# Add "-public", "/var/www" to enable the web front-end
|
|
# Add "-internal-server", "8888" to enable the pprof+metrics server
|
|
#
|
|
# Example:
|
|
# CMD ["-use-x-forwarded-for", "-public", "/var/www", "-internal-server", "8888"]
|
|
|