blob: b088ad885ac5ac7fe059c34bc36752ca53782eed [file] [log] [blame]
Ilya Biryukovaf351da2017-06-30 09:46:45 +00001#===- 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.
14FROM ubuntu
15
16# FIXME: Change maintainer name.
17LABEL maintainer "Maintainer <maintainer@email>"
18
19# FIXME: Install all packages you want to have in your release container.
Ilya Biryukov103aedd2017-07-24 16:02:29 +000020# A minimal useful installation must include libstdc++ and binutils.
Ilya Biryukovaf351da2017-06-30 09:46:45 +000021
22# Unpack clang installation into this container.
23# It is copied to this directory by build_docker_image.sh script.
Ilya Biryukov867e36d2017-08-28 15:12:24 +000024ADD clang.tar.gz /usr/local/