From a508687a433f8fbf8aa21de22143a94ed365d105 Mon Sep 17 00:00:00 2001 From: Sam Dodrill Date: Sun, 8 Feb 2015 21:43:00 -0800 Subject: [PATCH] Add ultimate lapis setup --- lapis-ultimate/Dockerfile | 34 ++++++++++++++++++++++++++++++++++ lapis-ultimate/lapis | 9 +++++++++ 2 files changed, 43 insertions(+) create mode 100644 lapis-ultimate/Dockerfile create mode 100755 lapis-ultimate/lapis diff --git a/lapis-ultimate/Dockerfile b/lapis-ultimate/Dockerfile new file mode 100644 index 0000000..810334a --- /dev/null +++ b/lapis-ultimate/Dockerfile @@ -0,0 +1,34 @@ +FROM flitter/init +MAINTAINER Xena + +RUN apt-get update && \ + apt-get -y install libreadline-dev libncurses5-dev libpcre3-dev libssl-dev perl make curl git-core luarocks lua-sec nodejs npm lua-discount + +ENV SRC_DIR /opt +ENV OPENRESTY_VERSION 1.7.7.2 +ENV OPENRESTY_PREFIX /app/openresty +ENV LAPIS_VERSION 1.1.0 + +RUN cd $SRC_DIR && curl -LO http://openresty.org/download/ngx_openresty-$OPENRESTY_VERSION.tar.gz &&\ + tar xzf ngx_openresty-$OPENRESTY_VERSION.tar.gz && cd ngx_openresty-$OPENRESTY_VERSION &&\ + ./configure --prefix=$OPENRESTY_PREFIX &&\ + make && make install && rm -rf ngx_openresty-$OPENRESTY_VERSION* &&\ + luarocks install lapis $LAPIS_VERSION &&\ + luarocks install moonscript &&\ + luarocks install moonbox &&\ + npm install -g coffee-script && npm install -g bower + +ADD lapis /etc/service/lapis/run +ENTRYPOINT /sbin/my_init + +ENV PORT 5000 +EXPOSE 5000 +ENV LAPIS_ENVIRONMENT docker + +ONBUILD ADD BoxFile /app/src +ONBUILD RUN cd /app/src && moonbox install +ONBUILD ADD bower.json /app/src +ONBUILD RUN cd /app/src && bower install +ONBUILD ADD . /app/src +ONBUILD RUN moonc /app/src +ONBUILD RUN cd /app/src && bash -c 'coffee --compile --bare --no-header **/*.coffee' diff --git a/lapis-ultimate/lapis b/lapis-ultimate/lapis new file mode 100755 index 0000000..2e44187 --- /dev/null +++ b/lapis-ultimate/lapis @@ -0,0 +1,9 @@ +#!/bin/bash + +cd /app/src + +export LAPIS_OPENRESTY=/app/openresty/nginx/sbin/nginx +source moonbox env enter + +[ -e migrations.lua ] && lapis migrate +lapis server docker