mirror of
https://github.com/outbackdingo/databunker.git
synced 2026-01-27 18:18:43 +00:00
adding docker support
This commit is contained in:
43
Dockerfile
Normal file
43
Dockerfile
Normal file
@@ -0,0 +1,43 @@
|
||||
############################
|
||||
# STEP 1 build executable binary
|
||||
############################
|
||||
FROM golang:alpine AS builder
|
||||
# Install git.
|
||||
# Git is required for fetching the dependencies.
|
||||
RUN apk update && apk add --no-cache git gcc libc-dev
|
||||
RUN go get -u github.com/fatih/structs
|
||||
RUN go get -u github.com/gobuffalo/packr
|
||||
RUN go get -u github.com/gobuffalo/packr/packr
|
||||
RUN go get -u github.com/tidwall/gjson
|
||||
RUN go get -u github.com/ttacon/libphonenumber
|
||||
RUN go get -u github.com/hashicorp/go-uuid
|
||||
RUN go get -u go.mongodb.org/mongo-driver/bson
|
||||
RUN go get -u modernc.org/ql/ql
|
||||
RUN go get -u github.com/evanphx/json-patch
|
||||
RUN go get -u github.com/julienschmidt/httprouter
|
||||
WORKDIR $GOPATH/src/paranoidguy/databunker/src/
|
||||
COPY . $GOPATH/src/paranoidguy/databunker/
|
||||
RUN find $GOPATH/src/paranoidguy/databunker/
|
||||
# Fetch dependencies.
|
||||
# Using go get.
|
||||
RUN go get -d -v
|
||||
# prepare web to go with packr
|
||||
RUN packr
|
||||
# Build the binary.
|
||||
RUN go build -o /go/bin/databunker
|
||||
# clean packr
|
||||
RUN packr clean
|
||||
RUN cp ../run.sh /go/bin/databunker.sh
|
||||
############################
|
||||
# STEP 2 build a small image
|
||||
############################
|
||||
FROM scratch
|
||||
# Copy our static executable.
|
||||
COPY --from=builder /bin/sh /bin/sh
|
||||
COPY --from=builder /lib/ld* /lib/
|
||||
COPY --from=builder /go/bin/databunker /go/bin/databunker
|
||||
COPY --from=builder /go/bin/databunker.sh /go/bin/databunker.sh
|
||||
# Run the hello binary.
|
||||
#ENTRYPOINT ["/go/bin/databunker"]
|
||||
ENTRYPOINT ["/bin/sh", "/go/bin/databunker.sh"]
|
||||
#CMD ["/bin/sh", "-x", "-c", "/go/bin/databunker -init"]
|
||||
Reference in New Issue
Block a user