diff --git a/Dockerfile b/Dockerfile index 3d575504..09f458ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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 \