Slide 11
Slide 11 text
1.0
myApp 1.1 2.0 2.2
2.1
11
アプリケーションと依存関係を一緒にパッケージング・管理できる
# Pull base image
FROM ubuntu:14.04
# Install dependencies
RUN apt-get update
RUN apt-get install build-essential nodejs libpq-dev -y
# Install application
COPY . .
RUN bundle install
# Describe what this container does
CMD bundle exec puma -C config/puma.rb
Dockerイメージ作成時のOS、依存ライブラリ、アプリケーションをスナップショットとしてバージョン管理