From 415afaee09ab7d0e40bd974a913484369aea9e37 Mon Sep 17 00:00:00 2001 From: DarkCat09 Date: Fri, 14 Mar 2025 17:59:11 +0400 Subject: [PATCH] fix: apt-get, no readline --- Dockerfile.openj9 | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile.openj9 b/Dockerfile.openj9 index 44aee04..0e86918 100644 --- a/Dockerfile.openj9 +++ b/Dockerfile.openj9 @@ -2,9 +2,10 @@ FROM ubuntu:25.04 AS build # partially copied from mkdocker.sh # Copyright IBM Corp (Eclipse Public License 2.0) -RUN apt -qq update \ - && apt -qq upgrade -y \ - && apt -qq install -y --no-install-recommends \ +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get -qq update \ + && apt-get -qq upgrade -y \ + && apt-get -qq install -y --no-install-recommends \ ant ant-contrib autoconf ca-certificates cmake cpio file gcc g++ git \ libasound2-dev libcups2-dev libdwarf-dev libelf-dev libexpat1-dev libffi-dev \ libfontconfig libfontconfig1-dev libfreetype6-dev libnuma-dev libssl-dev \