Sha256: c334cfc1a891217a80f8d744d583aae9530195b2fc22f80f56d42a0725bd3523
Contents?: true
Size: 298 Bytes
Versions: 6
Compression:
Stored size: 298 Bytes
Contents
# 1: Use ruby 2.3.3 as base: FROM ruby:2.3.3 # 2: We'll set this gem path as the working directory WORKDIR /usr/src/lib # 3: We'll set the working dir as HOME and add the app's binaries path to $PATH: ENV HOME=/usr/src/lib PATH=/usr/src/lib/bin:$PATH # 4: Set the default command: CMD ["guard"]
Version data entries
6 entries across 6 versions & 2 rubygems