From 9175a5c42ad365fb8a6f50d856ab879912d83469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Petazzoni?= Date: Wed, 25 Jun 2025 17:07:27 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=8D=20Pin=20version=20of=20thin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thin 2.0 was released June 22 (ish), so... We need to pin Thin to 1.X. This is embarrassing in a way, but also a great debugging opportunity every couple of years! 😬😅 --- dockercoins/hasher/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockercoins/hasher/Dockerfile b/dockercoins/hasher/Dockerfile index 6313a131..707ecd12 100644 --- a/dockercoins/hasher/Dockerfile +++ b/dockercoins/hasher/Dockerfile @@ -1,7 +1,7 @@ FROM ruby:alpine RUN apk add --update build-base curl RUN gem install sinatra --version '~> 3' -RUN gem install thin +RUN gem install thin --version '~> 1' ADD hasher.rb / CMD ["ruby", "hasher.rb"] EXPOSE 80