add windmill

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-07-21 18:28:03 -04:00
parent 0e54da59e3
commit b083c4224e
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
2 changed files with 45 additions and 12 deletions

View File

@ -15,15 +15,18 @@ RUN set -x \
cmake \
libxml2-dev \
libxslt-dev \
pkgconfig \
ruby-json \
&& git clone --depth 1 https://github.com/srcclr/commit-watcher.git /usr/src/commit-watcher \
&& cd /usr/src/commit-watcher \
&& ( \
cd /usr/src/commit-watcher \
&& gem install \
activesupport-json_encoder \
--no-rdoc --no-ri \
&& bundle config build.nokogiri --use-system-libraries \
&& bundle update sdoc \
&& bundle install \
) \
&& apk del .build-deps
WORKDIR /usr/src/commit-watcher

30
windmill/Dockerfile Normal file
View File

@ -0,0 +1,30 @@
FROM ruby:alpine
RUN apk add --no-cache \
ca-certificates \
libxml2 \
libxslt \
postgresql-libs \
sqlite-libs
RUN set -x \
&& apk add --no-cache --virtual .build-deps \
build-base \
git \
libxml2-dev \
libxslt-dev \
pkgconfig \
postgresql-dev \
sqlite-dev \
&& git clone --depth 1 https://github.com/heroku/windmill.git /usr/src/windmill \
&& ( \
cd /usr/src/windmill \
&& sed -i 's/ruby "2.2.3"/ruby "2.5.1"/' Gemfile \
&& bundle config build.nokogiri --use-system-libraries \
&& bundle install \
) \
&& apk del .build-deps
WORKDIR /usr/src/windmill
CMD [ "rake", "db:setup", "&&", "ruby", "server.rb" ]