Summary: We previously emulated multi-staged builds using two dockerfiles, native support from Docker allows us to merge them into one, simplifying our scripts. For more details about multi-stage builds, see: https://docs.docker.com/develop/develop-images/multistage-build/ Reviewers: mehdi_amini, klimek, sammccall Reviewed By: sammccall Subscribers: llvm-commits, ioeric, cfe-commits Differential Revision: https://reviews.llvm.org/D44787 llvm-svn: 328503
32 lines
1.2 KiB
Docker
32 lines
1.2 KiB
Docker
#===- llvm/utils/docker/nvidia-cuda/build/Dockerfile ---------------------===//
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
#===----------------------------------------------------------------------===//
|
|
# Stage 1. Check out LLVM source code and run the build.
|
|
FROM nvidia/cuda:8.0-devel as builder
|
|
LABEL maintainer "LLVM Developers"
|
|
# Install llvm build dependencies.
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends ca-certificates cmake python \
|
|
subversion ninja-build && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
ADD checksums /tmp/checksums
|
|
ADD scripts /tmp/scripts
|
|
# Arguments passed to build_install_clang.sh.
|
|
ARG buildscript_args
|
|
# Run the build. Results of the build will be available at /tmp/clang-install/.
|
|
RUN /tmp/scripts/build_install_llvm.sh ${buildscript_args}
|
|
|
|
|
|
# Stage 2. Produce a minimal release image with build results.
|
|
FROM nvidia/cuda:8.0-devel
|
|
LABEL maintainer "LLVM Developers"
|
|
# Copy clang installation into this container.
|
|
COPY --from=builder /tmp/clang-install/ /usr/local/
|
|
# C++ standard library and binutils are already included in the base package.
|