前提・実現したいこと
以下のサイトを参考にDockerでRailsの環境設定をしています。
https://qiita.com/kodai_0122/items/795438d738386c2c1966
node.jsのバージョンのアップグレードを求められますが、最新にしても解決できません。
Railsの開発をしたいのに、webpacker関連にかなり苦しめられています。
あらゆるサイトを見てみましたが私の知識では解決できそうにありません。
どうか助けてください。
発生している問題・エラーメッセージ
下記を実行すると
terminal
1$ docker-compose run web bundle exec rails webpacker:install
下記のエラーが表示されます。
Creating network "myapp_default" with the default driver Creating myapp_db_1 ... done sh: 1: node: not found Webpacker requires Node.js >= 8.16.0 and you are using 4.8.2 Please upgrade Node.js https://nodejs.org/en/download/
terminal
1$ node -v 2v14.5.0
バージョンは14.5.0のはずなのに、4.8.2を使っていると言われて意味がわかりません。
該当のソースコード
Dockerfile
1FROM ruby:2.6.1 2RUN apt-get update -qq && apt-get install -y nodejs postgresql-client 3######################################################################## 4# yarnパッケージ管理ツールをインストール 5RUN apt-get update && apt-get install -y curl apt-transport-https wget && \ 6curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ 7echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ 8apt-get update && apt-get install -y yarn 9# Node.jsをインストール 10RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - && \ 11apt-get install nodejs 12####################################################################### 13RUN mkdir /myapp 14WORKDIR /myapp 15COPY Gemfile /myapp/Gemfile 16COPY Gemfile.lock /myapp/Gemfile.lock 17RUN bundle install 18COPY . /myapp 19 20# Add a script to be executed every time the container starts. 21COPY entrypoint.sh /usr/bin/ 22RUN chmod +x /usr/bin/entrypoint.sh 23ENTRYPOINT ["entrypoint.sh"] 24EXPOSE 3000 25 26# Start the main process. 27CMD ["rails", "server", "-b", "0.0.0.0"]
試したこと
以下のサイトを参考に、node.jsを一度すべてアンインストールし、再度nodebrewでインストールし直しました。
https://blog.websandbag.com/entry/2018/01/21/000000
環境変数PATHなども不要箇所は削除しました。
補足情報(FW/ツールのバージョンなど)
Docker: 19.03.8
Gemfile
1source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4ruby '2.6.1' 5 6# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 7gem 'rails', '~> 6.0.3', '>= 6.0.3.2' 8# Use postgresql as the database for Active Record 9gem 'pg', '>= 0.18', '< 2.0' 10# Use Puma as the app server 11gem 'puma', '~> 4.1' 12# Use SCSS for stylesheets 13gem 'sass-rails', '>= 6' 14# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker 15gem 'webpacker', '~> 4.0' 16# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 17gem 'turbolinks', '~> 5' 18# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 19gem 'jbuilder', '~> 2.7' 20# Use Redis adapter to run Action Cable in production 21# gem 'redis', '~> 4.0' 22# Use Active Model has_secure_password 23# gem 'bcrypt', '~> 3.1.7' 24 25# Use Active Storage variant 26# gem 'image_processing', '~> 1.2' 27 28# Reduces boot times through caching; required in config/boot.rb 29gem 'bootsnap', '>= 1.4.2', require: false 30 31group :development, :test do 32 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 33 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 34end 35 36group :development do 37 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 38 gem 'web-console', '>= 3.3.0' 39 gem 'listen', '~> 3.2' 40 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 41 gem 'spring' 42 gem 'spring-watcher-listen', '~> 2.0.0' 43end 44 45group :test do 46 # Adds support for Capybara system testing and selenium driver 47 gem 'capybara', '>= 2.15' 48 gem 'selenium-webdriver' 49 # Easy installation and use of web drivers to run system tests with browsers 50 gem 'webdrivers' 51end 52 53# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 54gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 55
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。