Skip to content

Commit

Permalink
Need a refresh on the index when the cache is gone
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed May 11, 2024
1 parent a37f150 commit 8bdee6d
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -25,7 +25,8 @@ ENV RAILS_ENV="production" \
FROM base as build

# Install packages needed to build gems<%= using_node? ? " and node modules" : "" %>
RUN apt-get install --no-install-recommends -y <%= dockerfile_build_packages.join(" ") %> && \
RUN apt-get update -qq && \
apt-get install --no-install-recommends -y <%= dockerfile_build_packages.join(" ") %> && \
rm -rf /var/lib/apt/lists /var/cache/apt/archives

<% if using_node? -%>
Expand Down

0 comments on commit 8bdee6d

Please sign in to comment.