Sha256: 8916684cb3a14332fd7976dc03ac74b73c36485a89c525906d8f2e0e7e91314c

Contents?: true

Size: 1.01 KB

Versions: 8

Compression:

Stored size: 1.01 KB

Contents

FROM ruby:2.3.4
MAINTAINER muffinista@gmail.com

# Install apt based dependencies required to run Rails as
# well as RubyGems. As the Ruby image itself is based on a
# Debian image, we use apt-get to install those.
RUN apt-get update && apt-get install -y \
  build-essential \
  percona-toolkit

# Configure the main working directory. This is the base
# directory used in any further RUN, COPY, and ENTRYPOINT
# commands.
RUN mkdir -p /app /app/lib/departure
WORKDIR /app

# Copy the Gemfile as well as the Gemfile.lock and install 
# the RubyGems. This is a separate step so the dependencies 
# will be cached unless changes to one of those two files 
# are made.
COPY departure.gemspec Gemfile ./ 
COPY lib/departure/version.rb ./lib/departure/

RUN gem install bundler && bundle install --jobs 20 --retry 5

# Copy the main application.
COPY . ./

# The main command to run when the container starts. Also
# tell the Rails dev server to bind to all interfaces by
# default.
#CMD ["bundle", "exec", "rails", "server", "-b", "0.0.0.0"]

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
departure-6.5.0 Dockerfile
departure-6.4.0 Dockerfile
departure-6.3.0 Dockerfile
departure-76c9880-6.2.0 Dockerfile
departure-6.2.0 Dockerfile
departure-6.1.0 Dockerfile
departure-6.0.0 Dockerfile
departure-5.0.0 Dockerfile