From d24393574bc9d3a84bb0b1e268b97a64bee0ab2e Mon Sep 17 00:00:00 2001 From: MattyTheHacker <18513864+MattyTheHacker@users.noreply.github.com> Date: Thu, 17 Apr 2025 07:36:02 +0100 Subject: [PATCH] Cleanup bundle configuratioN --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c75a4746..7c3604c8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ FROM ruby:3.4.2 AS base -RUN bundle config --global frozen 1 && \ - mkdir -p /vendor/bundle && \ - bundle config set --local path /vendor/bundle +RUN bundle config set frozen 'true' && \ + bundle config set path '/vendor/bundle' + WORKDIR /usr/src/app COPY Gemfile Gemfile.lock ./