🙌
bundle installの対処法
エラーの対処法メモ
WSL2 + Windows + Docker Desktop を使用していました。
FROM ruby:2.5
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
WORKDIR /usr/src/app
COPY Gemfile Gemfile.lock ./
RUN bundle install
COPY . .
CMD ["./your-daemon-or-script.rb"]
のDockerファイルを使っているときに、下記のエラーがでました。
[5/6] RUN bundle install:
#8 0.514 Your bundle only supports platforms [] but your local platforms are ["ruby",
#8 0.514 "x86_64-linux"], and there's no compatible match between those two lists.
RUN bundle config --global frozen 1
の部分をコメントアウトすると、bundle install
が動くようになりました。
Discussion