From e53e47d25253371d97cc454e8f825be4c05131b1 Mon Sep 17 00:00:00 2001 From: Ken Toler Date: Fri, 17 Apr 2020 16:03:25 -0400 Subject: [PATCH] fixing Dockerfile mistakes so that it will build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8438c69..1fc8b2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM ruby:2.6.5 RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs RUN mkdir /myapp WORKDIR /myapp -RUN bundle install --with=openshift ADD Gemfile /myapp/Gemfile ADD Gemfile.lock /myapp/Gemfile.lock +RUN bundle install --with=openshift ADD . /myapp RUN chgrp -R 0 /myapp \ && chmod -R g+rwX /myapp \ No newline at end of file