From c934083404dc72e5282093db90866fdfaa23af13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Podrou=C5=BEek?= Date: Tue, 6 Nov 2018 09:42:53 +0100 Subject: [PATCH] Add support for ruby 2.5.3 --- Dockerfile | 4 ++-- README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index ec42bd5..6670006 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ # see https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/ for Dockerfile best practices # build me with: -# docker build -t "juicymo/drone-ruby:2.4.5" . +# docker build -t "juicymo/drone-ruby:2.5.3" . -FROM ruby:2.4.5-alpine3.8 +FROM ruby:2.5.3-alpine3.8 MAINTAINER Tomas Jukin ENV BUILD_PACKAGES curl-dev build-base bash cmake clang clang-dev make gcc g++ libc-dev linux-headers diff --git a/README.md b/README.md index 96d9a92..c40eb9f 100755 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ This is a Ruby image for [Drone](https://github.com/drone/drone), inspired by [4 Intent of this image is CI testing of Ruby or Rails projects with Drone. -This image supports `Drone 0.7.0` and `MRI Ruby 2.4.5`: +This image supports `Drone 0.7.0` and `MRI Ruby 2.5.3`: It has a [bundler](http://bundler.io/) installed. @@ -41,7 +41,7 @@ pipeline: - /tmp/cache:/cache build: - image: juicymo/drone-ruby:2.4.5 + image: juicymo/drone-ruby:2.5.3 environment: - RAILS_ENV=test commands: @@ -57,7 +57,7 @@ pipeline: - /tmp/cache:/cache test: - image: juicymo/drone-ruby:2.4.5 + image: juicymo/drone-ruby:2.5.3 environment: - RAILS_ENV=test - DB_HOST=database