From 6a8c9fecd5dc8624b2b8370ac316de666ff7f314 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Mon, 6 Jul 2015 16:50:25 -0300 Subject: [PATCH] Remove support for autobuild image --- CHANGELOG.md | 4 +++- auto-build/Dockerfile | 7 ------- mk-images => mk-image | 3 --- 3 files changed, 3 insertions(+), 11 deletions(-) delete mode 100644 auto-build/Dockerfile rename mk-images => mk-image (51%) diff --git a/CHANGELOG.md b/CHANGELOG.md index b68bb1b..1d2339e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,9 @@ BREAKING CHANGES: - Switched to `heroku/cedar:14` [image](https://registry.hub.docker.com/u/heroku/cedar/) since it [has been brought up to speed](https://github.com/heroku/stack-images/pull/15) with `progrium/cedarish`. - - Inline buildpack uses an array of string commands instead of an array with the command to run.... + - Autobuild image support has been removed [[GH-93]] + +[GH-93]: https://github.com/fgrehm/devstep/issues/93 IMPROVEMENTS: diff --git a/auto-build/Dockerfile b/auto-build/Dockerfile deleted file mode 100644 index ba44bc8..0000000 --- a/auto-build/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM fgrehm/devstep:v0.4.0 - -##################################################################### -# Add project to the image and build it -ONBUILD COPY . /workspace -ONBUILD WORKDIR /workspace -ONBUILD RUN CLEANUP=1 /opt/devstep/bin/build-project /workspace diff --git a/mk-images b/mk-image similarity index 51% rename from mk-images rename to mk-image index 9965b03..b820990 100755 --- a/mk-images +++ b/mk-image @@ -6,6 +6,3 @@ tag='v0.4.0' echo "===> Building fgrehm/devstep:${tag}" docker build -t fgrehm/devstep:${tag} . - -echo "===> Building fgrehm/devstep-ab:${tag}" -(cd auto-build && docker build -t fgrehm/devstep-ab:${tag} .)