mirror of
https://github.com/terorie/od-database-crawler.git
synced 2025-04-04 06:52:59 +00:00
16 lines
499 B
Docker
16 lines
499 B
Docker
FROM golang:alpine as builder
|
|
ADD . /go/src/github.com/terorie/od-database-crawler
|
|
RUN apk add git \
|
|
&& go get -d -v github.com/terorie/od-database-crawler \
|
|
&& CGO_ENABLED=0 go install -a \
|
|
-installsuffix cgo \
|
|
-ldflags="-s -w" \
|
|
github.com/terorie/od-database-crawler
|
|
|
|
FROM scratch
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
COPY --from=builder /go/bin/od-database-crawler /bin/
|
|
WORKDIR /oddb
|
|
VOLUME [ "/oddb" ]
|
|
CMD ["/bin/od-database-crawler", "server"]
|