-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates for Modern 7.2 #58
base: main
Are you sure you want to change the base?
Conversation
Dockerfile
Outdated
WORKDIR $APP_HOME | ||
|
||
# Update Gems first...only re-do this when bundler version changes. | ||
# If we need to force a gem update we'll have to `--no-cache` or add a file we can copy in | ||
RUN gem update --system && gem install bundler:2.3.25 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should upgrade bundler to latest version
Dockerfile
Outdated
postgresql13-dev \ | ||
vips-dev \ | ||
&& rm ./apk-updated-date.txt \ | ||
&& npm install -g [email protected] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drop font libraries, pandoc
, chrome
,
Do we need to upgrade postgresql13
or still latest library?
Dockerfile
Outdated
RUN bundle install && rm ./Gemfile ./Gemfile.lock | ||
|
||
COPY ./server/deploy/minimagick/policy.xml /etc/ImageMagick-6/ | ||
COPY ./server $APP_HOME/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change these all from ./server
Dockerfile
Outdated
|
||
# copy all font files to the font install directory, so chromium can use these fonts directly | ||
# this way we don't have to embed fonts in the HTML | ||
RUN find lib/assets/fonts -name '*.ttf' -exec ln '{}' /usr/share/fonts/ \; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drop this
group :development, :test do | ||
gem 'bullet' | ||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Byebug dropped for debug?
No description provided.