From 001a916d0ff541b8daa976f3e20ce4373020c795 Mon Sep 17 00:00:00 2001 From: Zoe <60870971+zoelesv@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:25:21 -0700 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e39b413628945..983dea15d0fde 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,8 @@ RUN apt-get update && apt-get install -y \ # Set the working directory inside the container WORKDIR /usr/src/app -# Copy Gemfile and Gemfile.lock into the container (necessary for `bundle install`) -COPY Gemfile Gemfile.lock ./ +# Copy Gemfile into the container (necessary for `bundle install`) +COPY Gemfile ./ # Install bundler and dependencies RUN gem install bundler:2.3.26 && bundle install