Skip to content

Commit

Permalink
Add nsswitch.conf to our docker image (minio#4379)
Browse files Browse the repository at this point in the history
This will cause the alpine images to resolve DNS
using /etc/hosts along with the normal DNS resolver.
  • Loading branch information
harshavardhana authored May 22, 2017
1 parent 9d98bf1 commit 348aa65
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
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
Expand All @@ -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)" && \
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.aarch64
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
Expand All @@ -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)" && \
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.armhf
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
Expand All @@ -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)" && \
Expand Down

0 comments on commit 348aa65

Please sign in to comment.