(MAINT) Add bundler to dockerfile_local

This commit adds bundler to dockerfile_local in order to support building vmpooler. Without this change the dockerfile_local build fails reporting bundler is not available.
This commit is contained in:
kirby@puppetlabs.com 2019-04-11 11:54:00 -07:00
parent 5351c9f45e
commit 0cc06f6eef

View file

@ -15,7 +15,7 @@ COPY ./ ./
ENV RACK_ENV=production
RUN bundle && gem build vmpooler.gemspec && gem install vmpooler*.gem && \
RUN gem install bundler && bundle && gem build vmpooler.gemspec && gem install vmpooler*.gem && \
chmod +x /usr/local/bin/docker-entrypoint.sh
ENTRYPOINT ["docker-entrypoint.sh"]