-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (29 loc) · 1.1 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# # ベースイメージとしてRuby 2.5.8を使用
# FROM ruby:2.5.8
# # Node.jsとYarnをインストール(Railsのアセットパイプラインに必要)
# RUN apt-get update -qq && apt-get install -y nodejs yarn
# # 作業ディレクトリを設定
# WORKDIR /myapp
# # GemfileとGemfile.lockをコピー
# COPY Gemfile /myapp/Gemfile
# COPY Gemfile.lock /myapp/Gemfile.lock
# # Gemをインストール
# RUN bundle install
# # アプリケーションのコードをコピー
# COPY . /myapp
FROM ruby:2.5.8
# 必要なパッケージを更新・インストール
RUN apt-get update -qq && apt-get install -y nodejs yarn
# 必要なバージョンに rubygems を更新
RUN gem update --system 3.3.22
# 作業ディレクトリを設定
WORKDIR /myapp
# Gemfile と Gemfile.lock を最初にコピー(キャッシュを利用するため)
COPY Gemfile /myapp/Gemfile
COPY Gemfile.lock /myapp/Gemfile.lock
# 依存関係をインストール
RUN bundle install
# アプリケーションコードをコピー
COPY . /myapp
# Rails サーバを起動
CMD ["rails", "server", "-b", "0.0.0.0"]