-
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.
Merge pull request #108 from dz3n/docker_api
Change Docker API
- Loading branch information
Showing
4 changed files
with
50 additions
and
50 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
FROM alpine:3.6 AS builder | ||
|
||
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"] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
build: | ||
docker build -t dnsdock:latest . | ||
|
||
build-test: | ||
docker build -t dnsdock:test . --progress=plain --no-cache |
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