前提・実現したいこと
herokuへdocker-composeで構築したrails6アプリを初deployしたい
発生している問題・エラーメッセージ
git push heroku masterをすると、webpackが見つからない、webpackerがinstallされてないのでは?とエラーが出てしまいdeployできない。
remote: webpack binstubs not found. remote: Have you run rails webpacker:install ? remote: Make sure the bin directory or binstubs are not included in .gitignore remote: Exiting! remote: ! Precompiling assets failed. ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://git.heroku.com/morning-dawn-73145.git'
該当のソースコード
.gitignore
# See https://help.github.com/articles/ignoring-files for more about ignoring files. # # If you find yourself ignoring temporary files generated by your text editor # or operating system, you probably want to add a global ignore instead: # git config --global core.excludesfile '~/.gitignore_global' # Ignore bundler config. /.bundle # Ignore all logfiles and tempfiles. /log/* /tmp/* !/log/.keep !/tmp/.keep # Ignore pidfiles, but keep the directory. /tmp/pids/* !/tmp/pids/ !/tmp/pids/.keep # Ignore uploaded files in development. /storage/* !/storage/.keep /public/assets .byebug_history # Ignore master key for decrypting credentials and more. /config/master.key /public/packs /public/packs-test /node_modules /yarn-error.log yarn-debug.log* .yarn-integrity .env
dockerfile
FROM ruby:3.0.2 RUN apt-get update -qq && apt-get install -y --no-install-recommends nodejs default-mysql-client && apt-get clean && rm -rf /var/lib/apt/lists/* 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 RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \ apt-get install -y nodejs RUN mkdir /okonomiyakidb WORKDIR /okonomiyakidb COPY Gemfile /okonomiyakidb/Gemfile COPY Gemfile.lock /okonomiyakidb/Gemfile.lock RUN bundle install COPY . /okonomikakidb COPY entrypoint.sh /usr/bin/ RUN chmod +x /usr/bin/entrypoint.sh ENTRYPOINT ["entrypoint.sh"] EXPOSE 3000 CMD ["rails", "server", "-b", "0.0.0.0"]
試したこと
①.gitignoreでbin,webpackなどの記述がないか確認。ありませんのでgitの除外はされていないようです。
https://teratail.com/questions/286158にてrails webpacker:installが必要とのことですので下記②、③を試しましたがエラーは解消できませんでした。
②docker-compose execでコンテナに入ってrails webpacd:install。errorなしで無事にinstall。その後コンテナから出てgit push heroku master
③dockerfile内のRUN bundle installの後にRUN rails webpacker:installを記述。その後コンテナから出てgit push heroku master
補足情報(FW/ツールのバージョンなど)
MacBook Pro (13-inch, 2020, Two Thunderbolt 3 ports)
よろしければどなたか御回答頂けますと幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。