为什么“捆绑安装”在构建我的Docker存储库时返回错误?

问题描述 投票:0回答:2

[我正在学习如何使用docker构建Rails应用程序,每次尝试运行$ docker-compose build web时,都会出现以下错误:

You must use Bundler 2 or greater with this lockfile.
ERROR: Service 'web' failed to build: The command '/bin/sh -c bundle install' returned a non-zero code: 20

这是我的Dockerfile:

FROM ruby:2.5.1

ENV APP_HOME /usr/src/app
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev

# Node.js
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \
&& apt-get install -y nodejs

RUN apt-get update && apt-get install -y curl apt-transport-https wget && \
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
apt-get update && apt-get install -y yarn

# SOURCE CODE

WORKDIR $APP_HOME

COPY . $APP_HOME/
RUN gem install bundler --version 2.0.2 --no-rdoc --no-ri
ADD Gemfile $APP_HOME/
ADD Gemfile.lock $APP_HOME/
RUN bundle install
RUN echo '--color' >> ~/.rspec

这是我的docker-compose.yml文件

version: '3'
services:
  db:
    image: postgres
  webpacker:
    build: .
    command: bundle exec bin/webpack-dev-server
    volumes:
      - .:/fancyapp
    ports:
      - "8080:8080"
  web:
    build: .
    command: bundle exec rails s -p 3000 -b '0.0.0.0'
    volumes:
      - .:/fancyapp
    ports:
      - "3000:3000"
    depends_on:
      - db
      - webpacker

我是与docker完全兼容的菜鸟,老实说,我看不出这里出了什么问题。我的实现基于this tutorial

ruby-on-rails docker ruby-on-rails-5 bundle bundler
2个回答
0
投票

运行命令gem list bundler,我想您的bundler版本小于版本2。

如果是这样,请运行gem install bundler -v 2.0.2安装最新的版本。

您可以运行gem install --default bundler -v 2.0.2使其成为要使用的默认版本。


0
投票

[似乎您的Gemfile.lock中说您使用的bundler版本高于2。在这种情况下,您可以使用2种方式:

  1. 降低您的本地版本

  2. 添加到您的docker文件字符串gem install bundler(无版本)。它将安装最后的bundler

© www.soinside.com 2019 - 2024. All rights reserved.