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
움직인다.
Reference
이 문제에 관하여(bundle install의 대응 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/s_tanoue/articles/40a9cb478484aa텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)