-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,4 @@ | ||
FROM alpine:3.6 AS builder | ||
FROM scratch | ||
|
||
ARG GOLANG_VERSION=1.8.4-r0 | ||
|
||
RUN apk update | ||
RUN apk add go=${GOLANG_VERSION} go-tools=${GOLANG_VERSION} git musl-dev | ||
RUN go version | ||
|
||
ENV GOPATH=/go | ||
ENV PATH=${PATH}:/go/bin | ||
ENV CGO_ENABLED=0 | ||
|
||
RUN go get -v github.com/tools/godep | ||
# RUN go get -u github.com/golang/lint/golint | ||
RUN go get github.com/ahmetb/govvv | ||
|
||
RUN mkdir -p /go/src/github.com/aacebedo/dnsdock | ||
|
||
WORKDIR /go/src/github.com/aacebedo/dnsdock | ||
|
||
RUN git clone https://github.com/aacebedo/dnsdock /go/src/github.com/aacebedo/dnsdock | ||
# RUN git checkout {{$GIT_COMMIT}} | ||
|
||
RUN mkdir /tmp/output | ||
|
||
WORKDIR /go/src/github.com/aacebedo/dnsdock | ||
|
||
ENV GIT_SSL_NO_VERIFY=true | ||
|
||
RUN godep restore | ||
|
||
ENV GOARCH=amd64 | ||
|
||
WORKDIR /go/src/github.com/aacebedo/dnsdock/src | ||
|
||
RUN govvv build -o /tmp/output/dnsdock | ||
|
||
FROM alpine:3.18.2 | ||
|
||
ENV GOARCH=amd64 | ||
|
||
COPY --from=builder /tmp/output/dnsdock /bin/dnsdock | ||
|
||
ENTRYPOINT ["dnsdock"] | ||
COPY dnsdock / | ||
ENTRYPOINT ["dnsdock"] |