Beim Bereitstellen einer mit Docker erstellten Rails-App (Version 5.2.4) in einer Produktionsumgebung wurde beim Versuch, die Assets vorkompiliert zu werden, der folgende Fehler angezeigt, der nicht ausgeführt werden konnte.
$docker-compose run web bundle exec rake assets:precompile RAILS_ENV=production
Starting excite-map_db_1 ... done
Yarn executable was not detected in the system.
Download Yarn at https://yarnpkg.com/en/docs/instal
Fügen Sie der Docker-Datei Folgendes hinzu
RUN curl https://deb.nodesource.com/setup_12.x | bash
RUN curl https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
RUN apt-get update && apt-get install -y nodejs yarn postgresql-client
https://github.com/yarnpkg/yarn/issues/7329
Recommended Posts