Skip to content

Commit e53e47d

Browse files
committed
fixing Dockerfile mistakes so that it will build
1 parent 6373762 commit e53e47d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ FROM ruby:2.6.5
22
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
33
RUN mkdir /myapp
44
WORKDIR /myapp
5-
RUN bundle install --with=openshift
65
ADD Gemfile /myapp/Gemfile
76
ADD Gemfile.lock /myapp/Gemfile.lock
7+
RUN bundle install --with=openshift
88
ADD . /myapp
99
RUN chgrp -R 0 /myapp \
1010
&& chmod -R g+rwX /myapp

0 commit comments

Comments
 (0)