summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2017-10-05 15:28:01 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2017-10-05 15:28:01 +0100
commit2a9f4d7daa07ff217bfba3ef3580260e0862ae2b (patch)
treeef253cef30bc1b05aa99c3a1609da25f7eee0843
parent4231a5e6d277ee0450d2359f064901b4be37edc7 (diff)
downloadbuildstream-2a9f4d7daa07ff217bfba3ef3580260e0862ae2b.tar.gz
Remove Dockerfile
The Docker image is now built from a separate repo at: <https://gitlab.com/BuildStream/buildstream-docker-images>
-rw-r--r--Dockerfile22
-rw-r--r--Dockerfile-build.sh22
2 files changed, 0 insertions, 44 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 07bce1b67..000000000
--- a/Dockerfile
+++ /dev/null
@@ -1,22 +0,0 @@
-# Docker image for running BuildStream
-# ====================================
-#
-# This image has BuildStream and its dependencies installed in /usr.
-# See Dockerfile-build.sh for the full build instructions.
-#
-# To build it, run this command from the current directory:
-#
-# docker build --tag=buildstream:latest .
-#
-# The build takes a long time because it has to download lots of packages using
-# DNF.
-
-
-FROM fedora:26
-
-ADD Dockerfile-build.sh /root/Dockerfile-build.sh
-RUN bash /root/Dockerfile-build.sh
-
-# Work around https://github.com/fedora-cloud/docker-brew-fedora/issues/14
-ENV LANG C.UTF-8
-ENV LC_ALL C.UTF-8
diff --git a/Dockerfile-build.sh b/Dockerfile-build.sh
deleted file mode 100644
index 2bed2c9f9..000000000
--- a/Dockerfile-build.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-# Shell script to set up the BuildStream Docker image.
-
-set -eu
-
-dnf update -y
-dnf install -y bubblewrap git python3-gobject bzr ostree
-
-# redhat-rpm-config seems to be needed to avoid some weird error, see:
-# https://stackoverflow.com/questions/41925585/
-dnf install -y gcc redhat-rpm-config
-
-echo "Installing latest BuildStream"
-cd
-git clone https://gitlab.com/BuildStream/buildstream.git ; cd buildstream
-dnf install -y python3-devel
-pip3 install .
-
-echo "Removing BuildStream build dependencies"
-dnf remove -y python3-devel
-dnf remove -y gcc redhat-rpm-config
-dnf clean all