From 833e34ce37cdc5cf961e3e3aabd197c88a3963f4 Mon Sep 17 00:00:00 2001 From: Scott Schneider Date: Tue, 20 Dec 2016 10:45:28 -0800 Subject: [PATCH] Update Dockerfile to move Gemflie* ...instead of Gemfile and Gemfile.lock (if it exists) individually --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3cad897..d9ba426 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,7 @@ FROM jruby:1.7-jdk RUN mkdir -p /var/lib/vmpooler WORKDIR /var/lib/vmpooler -ADD Gemfile /var/lib/vmpooler -ADD Gemfile.lock /var/lib/vmpooler +ADD Gemfile* /var/lib/vmpooler RUN bundle install --system RUN ln -s /opt/jruby/bin/jruby /usr/bin/jruby