Skip to content

Commit d47f7f3

Browse files
committed
fix: samples/server/petstore/ruby-sinatra/Dockerfile to reduce vulnerabilities
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE316-BUSYBOX-6913410 - https://snyk.io/vuln/SNYK-ALPINE316-BUSYBOX-6913410 - https://snyk.io/vuln/SNYK-ALPINE316-MUSL-8720632 - https://snyk.io/vuln/SNYK-ALPINE316-MUSL-8720632
1 parent b47627c commit d47f7f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/server/petstore/ruby-sinatra/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Build libraries
2-
FROM ruby:3.0-alpine as rubydev
2+
FROM ruby:3.4.4-alpine as rubydev
33

44
## for thin or falcon
55
#RUN apk --no-cache add make g++ libc-dev
@@ -13,7 +13,7 @@ RUN bundle config set path lib
1313
RUN bundle install
1414

1515
## Build Runtime image
16-
FROM ruby:3.0-alpine
16+
FROM ruby:3.4.4-alpine
1717

1818
RUN apk --no-cache add tzdata ## ca-certificates
1919

0 commit comments

Comments
 (0)