From c7f31b32868746748cd97cb967d19705ad3b785c Mon Sep 17 00:00:00 2001 From: Beni Cherniavsky-Paskin Date: Tue, 18 May 2021 14:13:07 +0300 Subject: [PATCH] Use fedora 33 with new NodeJS 14.16 Fedora 29 has nodejs 10.16.3 which is EOL. Fedora 33 (and 34) currently has 14.16.1. The newer NodeJS improves https://github.com/RedHatInsights/insights-proxy/issues/38 by returning 431 Request Header Fields Too Large instead of 400 Bad Request that NodeJS 10 returned. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a524f2f..694ed98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM fedora:29 +FROM fedora:33 RUN dnf update -y && \ dnf install -y dumb-init nodejs && \