2022-08-10 12:17:33 +00:00
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This is the dockerfile for building packages on yum-based RPM systems.
2020-05-14 19:27:34 +00:00
ARG BASEIMAGE
FROM ${BASEIMAGE}
2019-10-22 21:36:22 +00:00
RUN yum install -y \
ca-certificates \
2022-03-11 08:36:38 +00:00
gcc \
2019-10-22 21:36:22 +00:00
wget \
git \
2020-04-12 00:18:00 +00:00
make \
2019-10-22 21:36:22 +00:00
rpm-build && \
rm -rf /var/cache/yum/*
ARG GOLANG_VERSION = 0 .0.0
RUN set -eux; \
\
arch = " $( uname -m) " ; \
case " ${ arch ##*- } " in \
x86_64 | amd64) ARCH = 'amd64' ; ; \
ppc64el | ppc64le) ARCH = 'ppc64le' ; ; \
aarch64) ARCH = 'arm64' ; ; \
*) echo "unsupported architecture" ; exit 1 ; ; \
esac ; \
wget -nv -O - https://storage.googleapis.com/golang/go${ GOLANG_VERSION } .linux-${ ARCH } .tar.gz \
| tar -C /usr/local -xz
ENV GOPATH /go
ENV PATH $GOPATH /bin:/usr/local/go/bin:$PATH
# packaging
2022-05-18 11:55:05 +00:00
ARG PKG_NAME
2019-10-22 21:36:22 +00:00
ARG PKG_VERS
ARG PKG_REV
2022-08-23 19:15:41 +00:00
ENV PKG_NAME ${ PKG_NAME }
ENV PKG_VERS ${ PKG_VERS }
ENV PKG_REV ${ PKG_REV }
2019-10-22 21:36:22 +00:00
# output directory
ENV DIST_DIR = /tmp/nvidia-container-toolkit-$PKG_VERS /SOURCES
RUN mkdir -p $DIST_DIR /dist
# nvidia-container-toolkit
2020-04-12 00:18:00 +00:00
WORKDIR $GOPATH/src/nvidia-container-toolkit
COPY . .
2019-10-22 21:36:22 +00:00
2022-05-12 12:19:29 +00:00
ARG GIT_COMMIT
ENV GIT_COMMIT ${ GIT_COMMIT }
2021-09-06 11:45:46 +00:00
RUN make PREFIX = ${ DIST_DIR } cmds
2019-10-22 21:36:22 +00:00
# Hook for Project Atomic's fork of Docker: https://github.com/projectatomic/docker/tree/docker-1.13.1-rhel#add-dockerhooks-exec-custom-hooks-for-prestartpoststop-containerspatch
COPY oci-nvidia-hook $DIST_DIR /oci-nvidia-hook
# Hook for libpod/CRI-O: https://github.com/containers/libpod/blob/v0.8.5/pkg/hooks/docs/oci-hooks.5.md
COPY oci-nvidia-hook.json $DIST_DIR /oci-nvidia-hook.json
WORKDIR $DIST_DIR/..
2020-04-12 00:18:00 +00:00
COPY packaging/rpm .
2019-10-22 21:36:22 +00:00
2022-06-13 13:41:35 +00:00
ARG LIBNVIDIA_CONTAINER_TOOLS_VERSION
ENV LIBNVIDIA_CONTAINER_TOOLS_VERSION ${ LIBNVIDIA_CONTAINER_TOOLS_VERSION }
2019-10-22 21:36:22 +00:00
CMD arch = $( uname -m) && \
rpmbuild --clean --target= $arch -bb \
-D " _topdir $PWD " \
2022-05-18 11:55:05 +00:00
-D " release_date $( date +'%a %b %d %Y' ) " \
2022-05-18 13:16:32 +00:00
-D " git_commit ${ GIT_COMMIT } " \
2022-08-23 19:15:41 +00:00
-D " version ${ PKG_VERS } " \
2022-06-13 13:41:35 +00:00
-D " libnvidia_container_tools_version ${ LIBNVIDIA_CONTAINER_TOOLS_VERSION } " \
2022-08-23 19:15:41 +00:00
-D " release ${ PKG_REV } " \
2019-10-22 21:36:22 +00:00
SPECS/nvidia-container-toolkit.spec && \
mv RPMS/$arch /*.rpm /dist