diff --git a/.drone.yml b/.drone.yml index 787e4d7944..97940e06b5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,5 +1,3 @@ -# The scripts for building the base images can be found in scripts/drone-images - pipeline: flake8: image: python:3.5 diff --git a/scripts/drone-images/flake8/Dockerfile b/scripts/drone-images/flake8/Dockerfile deleted file mode 100644 index 28c3d2bb6a..0000000000 --- a/scripts/drone-images/flake8/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM python:3.4 - -RUN pip3.4 install flake8 diff --git a/scripts/drone-images/jscs/Dockerfile b/scripts/drone-images/jscs/Dockerfile deleted file mode 100644 index 2e338a1bd9..0000000000 --- a/scripts/drone-images/jscs/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM node:4.2.4 - -RUN npm install -g jscs@"^1.12.0 diff --git a/scripts/drone-images/readme.md b/scripts/drone-images/readme.md deleted file mode 100644 index 2b4c0f690e..0000000000 --- a/scripts/drone-images/readme.md +++ /dev/null @@ -1,15 +0,0 @@ -Wagtail CI base images -====================== - -This directory contains Dockerfiles for building the base images used by -Wagtail's continuous integration server. - - -Building --------- - -Run the following commands to build all the images: - - docker build -t wagtail-flake8 flake8 - docker build -t wagtail-jscs jscs - docker build -t wagtail-scss-lint scss-lint diff --git a/scripts/drone-images/scss-lint/Dockerfile b/scripts/drone-images/scss-lint/Dockerfile deleted file mode 100644 index a49a94491a..0000000000 --- a/scripts/drone-images/scss-lint/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM ruby:2.2 - -ADD gen_locale.sh /gen_locale.sh -RUN bash /gen_locale.sh -ENV LANG=en_GB.UTF-8 - -# Install scss-lint -RUN gem install scss-lint diff --git a/scripts/drone-images/scss-lint/gen_locale.sh b/scripts/drone-images/scss-lint/gen_locale.sh deleted file mode 100644 index 98235cb656..0000000000 --- a/scripts/drone-images/scss-lint/gen_locale.sh +++ /dev/null @@ -1,7 +0,0 @@ -apt-get update \ - && apt-get install -y locales \ - && rm -rf /var/lib/apt/lists/* \ - -echo "en_GB.UTF-8 UTF-8" >> /etc/locale.gen - -locale-gen