openaustralia/morph

View on GitHub
Dockerfile

Summary

Maintainability
Test Coverage
FROM ruby:2.7.6
RUN mkdir /morph
WORKDIR /morph
# We need a javascript runtime
RUN apt-get update && apt-get install -y nodejs
ADD Gemfile /morph/Gemfile
ADD Gemfile.lock /morph/Gemfile.lock
# TODO: Don't run as root
# TODO: Update bundler by running "gem install bundler"
RUN bundle install
ADD . /morph