From 95cbcea10e770f04711af1868313a21f152eebcb Mon Sep 17 00:00:00 2001 From: Klaus Meyer Date: Sun, 17 Dec 2023 01:57:06 +0100 Subject: [PATCH] keep using alpine 3.18 based docker image for now The build on the new alpine 3.19 based one is stuck in assets precompile step and causing the build timeout after a bunch of hours. Might be a problem with nodejs 20 as well. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b6a9836..8037fcc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.2.2-alpine +FROM ruby:3.2.2-alpine3.18 MAINTAINER Klaus Meyer