はじめてDockerを勉強しています。
ひとまずRails単体をビルドしようとしてます。
Dockerfileは以下のように記述しました。
dockerfile
1# Rubyをインストール 2FROM ruby:3.0.0 3 4# Node.jsをインストール 5RUN curl -sL RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \ 6 apt install nodejs 7 8# Yarnをインストール 9RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ 10 echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ 11 apt update && apt install yarn 12 13# BundlerでGemをインストール 14RUN bundle install 15 16# Webpackerをインストール 17RUN rails webpacker:install 18 19 20# 環境変数を設定 21ENV APP_HOME /app 22 23# ディレクトリの作成と移動 24WORKDIR $APP_HOME 25 26# ホストのGemfileなどをコンテナへコピー 27COPY Gemfile $APP_HOME/Gemfile 28#COPY Gemfile.lock $APP_HOME/Gemfile.lock 29 30 31 32# Railsアプリを作成(既存のアプリをマウントする場合は不要) 33RUN rails new . -d mysql --skip-bundle || bundle update 34 35 36# 設定ファイル書き換え(既存のアプリをマウントする場合は不要) 37#COPY config $APP_HOME/config 38 39# マウントできるように公開 40VOLUME $APP_HOME/public 41VOLUME $APP_HOME/tmp 42 43# コンテナ起動時にRailsサーバを起動 44CMD ["rails", "server"] 45 46
Gemfileは以下のようにしました。
ruby
1source 'https://rubygems.org' 2gem 'rails', '6.1.0'
Gemfile.lockは空を用意しました。
このような状態で、railsディレクトリ直下で以下のようにビルドしました。
docker image build -t study/rails:latest .
そうすると、以下のように「Could not locate Gemfile」と出力されてしまいました。
[+] Building 4.1s (9/13) => [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 84B 0.0s => [internal] load .dockerignore 0.0s => => transferring context: 2B 0.0s => [internal] load metadata for docker.io/library/ruby:3.0.0 2.6s => [auth] library/ruby:pull token for registry-1.docker.io 0.0s => [1/8] FROM docker.io/library/ruby:3.0.0@sha256:c74394d0a4a05a3068ca9d0c53c36d451e27773264b568ae16ae24be9ad 0.0s => [internal] load build context 0.0s => => transferring context: 28B 0.0s => CACHED [2/8] RUN curl -sL RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && apt install n 0.0s => CACHED [3/8] RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && echo "deb https: 0.0s => ERROR [4/8] RUN bundle install 1.1s ------ > [4/8] RUN bundle install: #8 1.086 Could not locate Gemfile ------ executor failed running [/bin/sh -c bundle install]: exit code: 10
Gemfileは存在するのですが・・・。
試しにrailsディレクトリ直下でbundle installすると、正常に全てのgemがインストールされました。
なぜdocker buildからはエラーになるのでしょうか?
どうすればビルドできるでしょうか?
分かる方教えてくださると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。