bundle install의 대응 방법

698 단어 Rubytech

오류 처리 노트


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 움직인다.

좋은 웹페이지 즐겨찾기