Skip to content
Closed
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
@@ -1,6 +1,6 @@
# Copyright 2019 Adevinta

FROM ruby:3.3.0-alpine AS pre-builder
FROM ruby:3.4.6-alpine AS pre-builder
ARG bundle_without="" rails_env=production
ENV SECRET_KEY_BASE=dumb
RUN apk add --no-cache \
Expand All @@ -20,7 +20,7 @@ RUN bundle install -j4 --retry 3 \
&& find /gems/ -name "*.c" -delete \
&& find /gems/ -name "*.o" -delete

FROM ruby:3.3.0-alpine
FROM ruby:3.4.6-alpine
ARG build_without="" rails_env=production
RUN apk add --no-cache \
openssl \
Expand Down
Loading