From 9920a7bc557eb8da6e480f7832b326510fbb4903 Mon Sep 17 00:00:00 2001 From: Malaber Date: Fri, 12 Apr 2024 01:37:02 +0200 Subject: [PATCH] Add git --- docker/production/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/production/Dockerfile b/docker/production/Dockerfile index 792e9b4..7d7581b 100644 --- a/docker/production/Dockerfile +++ b/docker/production/Dockerfile @@ -1,7 +1,7 @@ ARG base_commit FROM ruby:3.1.2-slim # RUN apk add --no-cache build-base tzdata sqlite sqlite-dev postgresql-dev git && gem install tzinfo-data -RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs && apt-get clean && gem install tzinfo-data +RUN apt-get update -qq && apt-get install -y git build-essential libpq-dev nodejs && apt-get clean && gem install tzinfo-data WORKDIR /app COPY Gemfile* /app/ RUN gem install bundler:2.3.13 && bundle config set deployment 'true' && bundle install