mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
Add nsswitch.conf to our docker image (#4379)
This will cause the alpine images to resolve DNS using /etc/hosts along with the normal DNS resolver.
This commit is contained in:
parent
9d98bf1c0f
commit
348aa6566c
@ -1,5 +1,7 @@
|
|||||||
FROM alpine:3.5
|
FROM alpine:3.5
|
||||||
|
|
||||||
|
MAINTAINER Minio Inc <dev@minio.io>
|
||||||
|
|
||||||
ENV GOPATH /go
|
ENV GOPATH /go
|
||||||
ENV PATH $PATH:$GOPATH/bin
|
ENV PATH $PATH:$GOPATH/bin
|
||||||
ENV CGO_ENABLED 0
|
ENV CGO_ENABLED 0
|
||||||
@ -9,6 +11,7 @@ WORKDIR /go/src/github.com/minio/
|
|||||||
RUN \
|
RUN \
|
||||||
apk add --no-cache ca-certificates && \
|
apk add --no-cache ca-certificates && \
|
||||||
apk add --no-cache --virtual .build-deps git go musl-dev && \
|
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 && \
|
go get -v -d github.com/minio/minio && \
|
||||||
cd /go/src/github.com/minio/minio && \
|
cd /go/src/github.com/minio/minio && \
|
||||||
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \
|
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
FROM resin/aarch64-alpine:3.5
|
FROM resin/aarch64-alpine:3.5
|
||||||
|
|
||||||
|
MAINTAINER Minio Inc <dev@minio.io>
|
||||||
|
|
||||||
ENV GOPATH /go
|
ENV GOPATH /go
|
||||||
ENV PATH $PATH:$GOPATH/bin
|
ENV PATH $PATH:$GOPATH/bin
|
||||||
ENV CGO_ENABLED 0
|
ENV CGO_ENABLED 0
|
||||||
@ -9,6 +11,7 @@ WORKDIR /go/src/github.com/minio/
|
|||||||
RUN \
|
RUN \
|
||||||
apk add --no-cache ca-certificates && \
|
apk add --no-cache ca-certificates && \
|
||||||
apk add --no-cache --virtual .build-deps git go musl-dev && \
|
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 && \
|
go get -v -d github.com/minio/minio && \
|
||||||
cd /go/src/github.com/minio/minio && \
|
cd /go/src/github.com/minio/minio && \
|
||||||
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \
|
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
FROM resin/armhf-alpine:3.5
|
FROM resin/armhf-alpine:3.5
|
||||||
|
|
||||||
|
MAINTAINER Minio Inc <dev@minio.io>
|
||||||
|
|
||||||
ENV GOPATH /go
|
ENV GOPATH /go
|
||||||
ENV PATH $PATH:$GOPATH/bin
|
ENV PATH $PATH:$GOPATH/bin
|
||||||
ENV CGO_ENABLED 0
|
ENV CGO_ENABLED 0
|
||||||
@ -9,6 +11,7 @@ WORKDIR /go/src/github.com/minio/
|
|||||||
RUN \
|
RUN \
|
||||||
apk add --no-cache ca-certificates && \
|
apk add --no-cache ca-certificates && \
|
||||||
apk add --no-cache --virtual .build-deps git go musl-dev && \
|
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 && \
|
go get -v -d github.com/minio/minio && \
|
||||||
cd /go/src/github.com/minio/minio && \
|
cd /go/src/github.com/minio/minio && \
|
||||||
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \
|
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \
|
||||||
|
Loading…
Reference in New Issue
Block a user