forked from minio/minio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nsswitch.conf to our docker image (minio#4379)
This will cause the alpine images to resolve DNS using /etc/hosts along with the normal DNS resolver.
- Loading branch information
1 parent
9d98bf1
commit 348aa65
Showing
3 changed files
with
9 additions
and
0 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,5 +1,7 @@ | ||
FROM alpine:3.5 | ||
|
||
MAINTAINER Minio Inc <[email protected]> | ||
|
||
ENV GOPATH /go | ||
ENV PATH $PATH:$GOPATH/bin | ||
ENV CGO_ENABLED 0 | ||
|
@@ -9,6 +11,7 @@ WORKDIR /go/src/github.com/minio/ | |
RUN \ | ||
apk add --no-cache ca-certificates && \ | ||
apk add --no-cache --virtual .build-deps git go musl-dev && \ | ||
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \ | ||
go get -v -d github.com/minio/minio && \ | ||
cd /go/src/github.com/minio/minio && \ | ||
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \ | ||
|
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,5 +1,7 @@ | ||
FROM resin/aarch64-alpine:3.5 | ||
|
||
MAINTAINER Minio Inc <[email protected]> | ||
|
||
ENV GOPATH /go | ||
ENV PATH $PATH:$GOPATH/bin | ||
ENV CGO_ENABLED 0 | ||
|
@@ -9,6 +11,7 @@ WORKDIR /go/src/github.com/minio/ | |
RUN \ | ||
apk add --no-cache ca-certificates && \ | ||
apk add --no-cache --virtual .build-deps git go musl-dev && \ | ||
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \ | ||
go get -v -d github.com/minio/minio && \ | ||
cd /go/src/github.com/minio/minio && \ | ||
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \ | ||
|
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,5 +1,7 @@ | ||
FROM resin/armhf-alpine:3.5 | ||
|
||
MAINTAINER Minio Inc <[email protected]> | ||
|
||
ENV GOPATH /go | ||
ENV PATH $PATH:$GOPATH/bin | ||
ENV CGO_ENABLED 0 | ||
|
@@ -9,6 +11,7 @@ WORKDIR /go/src/github.com/minio/ | |
RUN \ | ||
apk add --no-cache ca-certificates && \ | ||
apk add --no-cache --virtual .build-deps git go musl-dev && \ | ||
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \ | ||
go get -v -d github.com/minio/minio && \ | ||
cd /go/src/github.com/minio/minio && \ | ||
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \ | ||
|