diff --git a/docker/build/Dockerfile b/docker/build/Dockerfile index e584bc7b..9929cd40 100644 --- a/docker/build/Dockerfile +++ b/docker/build/Dockerfile @@ -13,6 +13,7 @@ COPY gems /myapp/gems/ WORKDIR /myapp COPY Gemfile /myapp/Gemfile COPY Gemfile.lock /myapp/Gemfile.lock +RUN gem install bundler -v "~>1.0" RUN bundle install CMD rake -T diff --git a/docker/debug/Dockerfile b/docker/debug/Dockerfile index 72b8d60a..8a205677 100644 --- a/docker/debug/Dockerfile +++ b/docker/debug/Dockerfile @@ -13,6 +13,7 @@ COPY gems /myapp/gems/ WORKDIR /myapp COPY Gemfile /myapp/Gemfile COPY Gemfile.lock /myapp/Gemfile.lock +RUN gem install bundler -v "~>1.0" RUN bundle install RUN groupadd -r -g 1000 $USER RUN useradd -r -m -g $USER -u 1000 $USER