前提・実現したいこと
Railsアプリをdockerで作成しています。
アプリにvue.jsを取り入れるため、Docker.fileを変更したところコードが反映されなくなり原因がわかりません。
該当のソースコード
Docker.file
FROM ruby:2.6.3 RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && apt-get update && \ apt-get install -y nodejs --no-install-recommends && rm -rf /var/lib/apt/lists/* RUN apt-get update -qq && apt-get install -y build-essential libpq-dev 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_8.x | bash - && \ apt-get install nodejs RUN yarn add node-sass RUN mkdir /app WORKDIR /app COPY Gemfile /app/Gemfile COPY Gemfile.lock /app/Gemfile.lock RUN bundle install COPY . /app
docker-compose.yml
version: "3" services: db: image: mysql:5.7 environment: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: root ports: - "3306:3306" web: build: . command: rails s -p 3000 -b '0.0.0.0' stdin_open: true tty: true volumes: - .:/app_name - ./mysql:/var/lib/mysql ports: - "3000:3000" links: - db
試したこと
development.rbに以下を追記しましたが結果は変わりませんでした。
config.file_watcher = ActiveSupport::FileUpdateChecker config.reload_classes_only_on_change = false
。
もう少し手順をご提示いただかないと、何が起こっているのかわかりません。
Dockerfileを変更したのち何をして、どのように確認して期待通りにならないのでしょうか。