blob: 953d81fc995171f816a3bd79ac0d26cd6f01a959 [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.
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.
24ADD clang.tar.gz /