Skip to content
Open
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 images/benchmarks/ruby/Dockerfile
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# example based on https://github.com/errm/fib
FROM alpine:3.9 as build
FROM alpine:3.21.3 as build

COPY Gemfile Gemfile.lock ./

Expand All @@ -8,7 +8,7 @@ RUN apk add --no-cache ruby ruby-dev ruby-bundler ruby-json build-base bash \
&& apk del --no-cache ruby-bundler \
&& rm -rf /usr/lib/ruby/gems/*/cache

FROM alpine:3.9 as prod
FROM alpine:3.21.3 as prod

COPY --from=build /usr/lib/ruby/gems /usr/lib/ruby/gems
RUN apk add --no-cache ruby ruby-json ruby-etc redis apache2-utils \
Expand Down