Skip to content

Commit

Permalink
Add support for ruby 2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
podruh committed Nov 6, 2018
1 parent e03f486 commit c934083
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 <tomas.jukin@juicymo.cz>

ENV BUILD_PACKAGES curl-dev build-base bash cmake clang clang-dev make gcc g++ libc-dev linux-headers
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit c934083

Please sign in to comment.