Ilya Biryukov | af351da | 2017-06-30 09:46:45 +0000 | [diff] [blame^] | 1 | #===- llvm/utils/docker/example/release/Dockerfile -----------------------===// |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | #===----------------------------------------------------------------------===// |
| 9 | # An image that unpacks a clang installation, compiled by the 'build/' |
| 10 | # container. |
| 11 | # Replace FIXMEs to prepare your own image. |
| 12 | |
| 13 | # FIXME: Replace 'ubuntu' with your base image. |
| 14 | FROM ubuntu |
| 15 | |
| 16 | # FIXME: Change maintainer name. |
| 17 | LABEL maintainer "Maintainer <maintainer@email>" |
| 18 | |
| 19 | # FIXME: Install all packages you want to have in your release container. |
| 20 | # A minimal usefull installation must include libstdc++ and binutils. |
| 21 | |
| 22 | # Unpack clang installation into this container. |
| 23 | # It is copied to this directory by build_docker_image.sh script. |
| 24 | ADD clang.tar.gz / |