Squashing changes associated with pg

This commit is contained in:
Ken Toler
2020-04-17 15:38:24 -04:00
parent 0dd2ed173c
commit 11819bf14c
7 changed files with 85 additions and 73 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
FROM ruby:2.6.5
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
RUN mkdir /myapp
RUN chgrp -R 0 /myapp \
&& chmod -R g+rwX /myapp
WORKDIR /myapp
RUN bundle install
ADD Gemfile /myapp/Gemfile
ADD Gemfile.lock /myapp/Gemfile.lock
RUN bundle install
ADD . /myapp
RUN chgrp -R 0 /myapp \
&& chmod -R g+rwX /myapp
ADD . /myapp