mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
348f3a7f89
* Make rdt-discovery buildable outside hardcoded path Do not assume that nfd sources always reside under hardcoded directory "/go/src/github.com/kubernetes-incubator/node-feature-discovery/". This makes it possible e.g. to build nfd locally outside the Docker container. * Do not hardcode the path for RDT helper binaries Utilize the standard PATH env variable, instead.
31 lines
1 KiB
Docker
31 lines
1 KiB
Docker
FROM golang:1.8
|
|
|
|
# Build node feature discovery and set it as entrypoint.
|
|
ADD . /go/src/github.com/kubernetes-incubator/node-feature-discovery
|
|
|
|
WORKDIR /go/src/github.com/kubernetes-incubator/node-feature-discovery
|
|
|
|
ENV PATH="/go/src/github.com/kubernetes-incubator/node-feature-discovery/rdt-discovery:${PATH}"
|
|
|
|
ENV CMT_CAT_SRCDIR="/go/src/github.com/kubernetes-incubator/node-feature-discovery/intel-cmt-cat"
|
|
|
|
ARG NFD_VERSION
|
|
|
|
RUN case $(dpkg --print-architecture) in \
|
|
arm64) \
|
|
echo "skip rdt on Arm64 platform" \
|
|
;; \
|
|
*) \
|
|
git clone --depth 1 https://github.com/01org/intel-cmt-cat.git \
|
|
&& cd intel-cmt-cat/lib; make install \
|
|
&& cd ../../rdt-discovery; make \
|
|
;; \
|
|
esac
|
|
|
|
RUN go get github.com/Masterminds/glide
|
|
RUN glide install --strip-vendor
|
|
RUN go install \
|
|
-ldflags "-s -w -X main.version=$NFD_VERSION" \
|
|
github.com/kubernetes-incubator/node-feature-discovery
|
|
|
|
ENTRYPOINT ["/go/bin/node-feature-discovery"]
|