Skip to content
Snippets Groups Projects
Commit c55e3aae authored by Theo Cushion's avatar Theo Cushion
Browse files

fix: change order so that all bundler dependencies are installed in the correct bundler location

Without this it risks some bundler dependencies being installed in the user-home which then get handled differently for Dockerfiles that inherit this one
parent 7c1d5bc7
Branches master
No related tags found
No related merge requests found
......@@ -21,5 +21,5 @@ USER nexus
WORKDIR /app
COPY --chown=nexus:nexus Gemfile Gemfile.lock ./
COPY --chown=nexus:nexus jetbrains_gems/*.gem /tmp/
RUN gem install --user-install /tmp/*.gem && \
/app/bootstrap-app-bundle.sh
RUN /app/bootstrap-app-bundle.sh && \
gem install --user-install /tmp/*.gem
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment