Skip to content

Commit

Permalink
fix: upgrade the ruby image in Dockerfile (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
VonnyJap authored Jul 26, 2024
1 parent 2568f5d commit 40ffdfc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.7.6-alpine
FROM ruby:3.3.4-alpine

# Create our application directory
RUN mkdir -p /usr/src/app
Expand All @@ -13,8 +13,8 @@ RUN set -x \
&& apk add --no-cache --virtual ca-certificates wget \
# Fetch the latest Guide release
&& wget -q -O - https://api.github.com/repos/screwdriver-cd/guide/releases/latest \
| egrep -o '/screwdriver-cd/guide/releases/download/v[0-9.]*/guide.tgz' \
| wget --base=http://github.com/ -i - -O guide.tgz \
| egrep -o '/screwdriver-cd/guide/releases/download/v[0-9.]*/guide.tgz' \
| wget --base=http://github.com/ -i - -O guide.tgz \
&& tar -zxvf guide.tgz \
# General clean-up
&& rm -rf guide.tgz \
Expand Down

0 comments on commit 40ffdfc

Please sign in to comment.