Merge pull request #1983 from kaedroho/drone-images

Added Drone Dockerfiles to /scripts
pull/1978/head
Matt Westcott 2015-12-01 11:01:40 +00:00
commit 11d7e35423
5 zmienionych plików z 26 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,3 @@
FROM python:3.4
RUN pip3.4 install flake8

Wyświetl plik

@ -0,0 +1,3 @@
FROM node:0.12
RUN npm install -g jscs

Wyświetl plik

@ -0,0 +1,5 @@
Wagtail CI base images
======================
This directory contains Dockerfiles for building the base images used by
Wagtail's continuous integration server.

Wyświetl plik

@ -0,0 +1,8 @@
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

Wyświetl plik

@ -0,0 +1,7 @@
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