Skip to content

Commit 5945196

Browse files
authored
Merge pull request #373 from plural/add-git-to-container
Add git to docker container.
2 parents e83866b + 82c32e2 commit 5945196

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#####################################################################
44
FROM ruby:3.3.6-alpine3.20 AS build
55

6-
RUN apk -U upgrade && apk add --no-cache gcompat postgresql-client build-base libpq-dev tzdata \
6+
RUN apk -U upgrade && apk add --no-cache gcompat git postgresql-client build-base libpq-dev tzdata \
77
&& rm -rf /var/cache/apk/*
88

99
RUN gem install rails
@@ -33,7 +33,7 @@ COPY . $RAILS_ROOT/
3333
#####################################################################
3434
FROM ruby:3.3.6-alpine3.20 AS final
3535

36-
RUN apk -U upgrade && apk add --no-cache gcompat postgresql-client tzdata \
36+
RUN apk -U upgrade && apk add --no-cache gcompat git postgresql-client tzdata \
3737
&& rm -rf /var/cache/apk/*
3838

3939
ENV RAILS_ROOT /var/www/nrdb-api

0 commit comments

Comments
 (0)