インターネットのある記事を見ていて疑問に感じた部分があります。疑問点は記事内のDockerfileで①、②の部分です。
記事参照元 リンク内容
FROM ruby:2.7.1 RUN apt-get update -qq && apt-get install -y nodejs postgresql-client ## nodejsとyarnはwebpackをインストールする際に必要 # yarnパッケージ管理ツールをインストール 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 # Node.jsをインストール RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - && \ apt-get install nodejs RUN mkdir /myapp WORKDIR /myapp COPY Gemfile /myapp/Gemfile ① COPY Gemfile.lock /myapp/Gemfile.lock RUN bundle install COPY . /myapp ② # Add a script to be executed every time the container starts. COPY entrypoint.sh /usr/bin/ RUN chmod +x /usr/bin/entrypoint.sh ENTRYPOINT ["entrypoint.sh"] EXPOSE 3000 # Start the main process. CMD ["rails", "server", "-b", "0.0.0.0"]
①に関して
COPY Gemfile /myapp/ COPY Gemfile.lock /myapp/
という書き方ではいけないのでしょうか?
わざわざ
COPY Gemfile /myapp/「Gemfile」 COPY Gemfile.lock /myapp/「Gemfile.lock」
と書かかれている理由は何ですか?
②に関して
COPY . /myapp
この行の記述の意味は何ですか?また
COPY . /myapp/
とどのような違いがありますか?
また、そもそも②の記述は本質的に必要ですか?
実際、docker-compose.ymlファイルではカレンとディレクトリ(build context)をマウントするようにvolumes指定で記述します。②一行の意味、必要性が理解できません。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/04/10 07:02