mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
add windmill
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
0e54da59e3
commit
b083c4224e
|
@ -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
30
windmill/Dockerfile
Normal 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" ]
|
Loading…
Reference in New Issue
Block a user