[PATCH] D37213: Changed Dockerfiles to install LLVM into /usr/local

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 28 08:13:44 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL311890: Changed Dockerfiles to install LLVM into /usr/local (authored by ibiryukov).

Repository:
  rL LLVM

https://reviews.llvm.org/D37213

Files:
  llvm/trunk/utils/docker/debian8/release/Dockerfile
  llvm/trunk/utils/docker/example/release/Dockerfile
  llvm/trunk/utils/docker/nvidia-cuda/release/Dockerfile


Index: llvm/trunk/utils/docker/example/release/Dockerfile
===================================================================
--- llvm/trunk/utils/docker/example/release/Dockerfile
+++ llvm/trunk/utils/docker/example/release/Dockerfile
@@ -21,4 +21,4 @@
 
 # Unpack clang installation into this container.
 # It is copied to this directory by build_docker_image.sh script.
-ADD clang.tar.gz /
+ADD clang.tar.gz /usr/local/
Index: llvm/trunk/utils/docker/debian8/release/Dockerfile
===================================================================
--- llvm/trunk/utils/docker/debian8/release/Dockerfile
+++ llvm/trunk/utils/docker/debian8/release/Dockerfile
@@ -18,4 +18,4 @@
     rm -rf /var/lib/apt/lists/*
 
 # Unpack clang installation into this image.
-ADD clang.tar.gz /
+ADD clang.tar.gz /usr/local/
Index: llvm/trunk/utils/docker/nvidia-cuda/release/Dockerfile
===================================================================
--- llvm/trunk/utils/docker/nvidia-cuda/release/Dockerfile
+++ llvm/trunk/utils/docker/nvidia-cuda/release/Dockerfile
@@ -18,6 +18,6 @@
 LABEL maintainer "LLVM Developers"
 
 # Unpack clang installation into this container.
-ADD clang.tar.gz /
+ADD clang.tar.gz /usr/local/
 
 # C++ standard library and binutils are already included in the base package.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D37213.112899.patch
Type: text/x-patch
Size: 1293 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170828/6ba60416/attachment.bin>


More information about the llvm-commits mailing list