This commit is contained in:
Yasuaki Uechi
2017-10-07 11:43:26 +09:00
commit 362ff17ac4
88 changed files with 2856 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM ruby:2.3
WORKDIR /usr/src/app/
# see http://stackoverflow.com/questions/38453963/gitlab-ci-setup-error-could-not-find-a-javascript-runtime
RUN apt-get update && apt-get install nodejs -y
COPY Gemfile /usr/src/app/
RUN bundle install