Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 221 Bytes

dockerfile.md

File metadata and controls

27 lines (20 loc) · 221 Bytes
title category
Dockerfile
Devops

Inheritance

FROM ruby:2.2.2

Variables

ENV APP_HOME /myapp
RUN mkdir $APP_HOME

Initialization

RUN bundle install
WORKDIR /myapp