about summary refs log tree commit diff
path: root/src/etc/Dockerfile
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-01-23 15:59:41 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-02-06 08:43:37 -0800
commitffd3070cc9ea6d845865f11d70c220da40720d7e (patch)
treee02a60901dca74b25cd58152975c5382a8ebe84b /src/etc/Dockerfile
parent77c3bfa7429abf87b76ba84108df018d9e9d90e2 (diff)
Clean our src/etc of old files
Some of these have long since expired, some are no longer in use now that we've
jettisoned the makefiles, but none of them should be needed any more.
Diffstat (limited to 'src/etc/Dockerfile')
-rw-r--r--src/etc/Dockerfile27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/etc/Dockerfile b/src/etc/Dockerfile
deleted file mode 100644
index 83d54789ff3..00000000000
--- a/src/etc/Dockerfile
+++ /dev/null
@@ -1,27 +0,0 @@
-FROM ubuntu:xenial
-
-# curl
-#   Download stage0, see src/bootstrap/bootstrap.py
-# g++
-#   Compile LLVM binding in src/rustllvm
-# gdb
-#   Used to run tests in src/test/debuginfo
-# git
-#   Get commit hash and commit date in version string
-# make
-#   Run build scripts in mk
-# libedit-dev zlib1g-dev
-#   LLVM dependencies as packaged in Ubuntu
-#   (They are optional, but Ubuntu package enables them)
-# llvm-3.7-dev (installed by llvm-3.7-tools)
-#   LLVM
-# llvm-3.7-tools
-#   FileCheck is used to run tests in src/test/codegen
-
-RUN apt-get update && apt-get -y install \
-    curl g++ gdb git make \
-    libedit-dev zlib1g-dev \
-    llvm-3.7-tools cmake
-
-RUN mkdir /build
-WORKDIR /build