Merge pull request #101 from tommyku/master

Add Docker support
This commit is contained in:
Mo Bitar
2017-04-27 08:46:39 -05:00
committed by GitHub
2 changed files with 23 additions and 0 deletions

3
.dockerignore Normal file
View File

@@ -0,0 +1,3 @@
# git
.git/
.gitignore

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM ruby:2.3.1-alpine
RUN apk add --update --no-cache \
alpine-sdk \
nodejs \
tzdata
WORKDIR /app/
COPY . /app/
RUN bundle install
RUN npm install
RUN npm install -g bower grunt
RUN bundle exec rake bower:install
RUN grunt