Sha256: 59b851b953c5803e15f0a1838e6a3af3e50b46bc75cca85692297e2f5f1c8610

Contents?: true

Size: 878 Bytes

Versions: 4

Compression:

Stored size: 878 Bytes

Contents

# Base image:
FROM ruby:2.5.8

# Install dependencies
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev lsof

# Install modern NodeJS
run curl -sL https://deb.nodesource.com/setup_12.x | bash -
run curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
run echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
run apt-get update && apt-get install -y nodejs yarn

# Set an environment variable where the Rails app is installed to inside of Docker image:
RUN mkdir -p /app/.git/hooks

WORKDIR /app

# Install Node Dependencies
ADD package.json yarn.lock /app/
RUN yarn install

# Update Bundler to Version 2 as ruby:2.5.5 defaults to an older version
RUN gem update --system && gem install bundler

# Install Ruby Dependencies
ADD Gemfile /app/Gemfile
ADD Gemfile.lock /app/Gemfile.lock
RUN bundle install

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
station-0.0.97 lib/nexmo_developer/Dockerfile
station-0.0.96 lib/nexmo_developer/Dockerfile
station-0.0.95 lib/nexmo_developer/Dockerfile
station-0.0.93 lib/nexmo_developer/Dockerfile