fix: apt-get, no readline

This commit is contained in:
DarkCat09 2025-03-14 17:59:11 +04:00
parent 3f75cded58
commit 415afaee09
Signed by: DarkCat09
SSH key fingerprint: SHA256:SnH1iYY/ogxxRmt1I6piy+aVUUzrOWvfksQWfhZ8JUM

View file

@ -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 \