From f9a964f73cbbca8e9be6995d9c846fda483771d6 Mon Sep 17 00:00:00 2001 From: Raul Gracia Date: Tue, 26 Sep 2023 15:18:10 +0100 Subject: [PATCH] add git into the container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f1e81bb8..45d18059 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apk add --update --no-cache tzdata && \ COPY .tool-versions Gemfile Gemfile.lock ./ RUN apk add --update --no-cache --virtual build-dependances \ - postgresql-dev build-base && \ + postgresql-dev build-base git && \ apk add --update --no-cache libpq yarn && \ bundle install --jobs=4 && \ rm -rf /usr/local/bundle/cache && \