Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#####################################################################
FROM ruby:3.3.6-alpine3.20 AS build

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

RUN gem install rails
Expand Down Expand Up @@ -33,7 +33,7 @@ COPY . $RAILS_ROOT/
#####################################################################
FROM ruby:3.3.6-alpine3.20 AS final

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

ENV RAILS_ROOT /var/www/nrdb-api
Expand Down
Loading