From 6c82bf25bb558ae4d02c6cc3074d995e73f8ad70 Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 10 Jul 2019 15:42:54 +0200 Subject: [PATCH] Raise Docker to ruby2.5.5 (#107) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will address issue รค106 --- containers/zammad/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/zammad/Dockerfile b/containers/zammad/Dockerfile index a123e03..64d1e7e 100644 --- a/containers/zammad/Dockerfile +++ b/containers/zammad/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:2.4.4-slim AS builder +FROM ruby:2.5.5-slim AS builder # note: zammad is currently incompatible to alpine because of: # https://github.com/docker-library/ruby/issues/113 @@ -23,7 +23,7 @@ RUN chmod +x /tmp/setup.sh; \ /tmp/setup.sh install -FROM ruby:2.4.4-slim +FROM ruby:2.5.5-slim MAINTAINER Zammad ARG BUILD_DATE