kopia lustrzana https://github.com/wagtail/wagtail
Merge pull request #1983 from kaedroho/drone-images
Added Drone Dockerfiles to /scriptspull/1978/head
commit
11d7e35423
|
@ -0,0 +1,3 @@
|
|||
FROM python:3.4
|
||||
|
||||
RUN pip3.4 install flake8
|
|
@ -0,0 +1,3 @@
|
|||
FROM node:0.12
|
||||
|
||||
RUN npm install -g jscs
|
|
@ -0,0 +1,5 @@
|
|||
Wagtail CI base images
|
||||
======================
|
||||
|
||||
This directory contains Dockerfiles for building the base images used by
|
||||
Wagtail's continuous integration server.
|
|
@ -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
|
|
@ -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
|
Ładowanie…
Reference in New Issue