fix(docker): add TERM environment variable to all Dockerfiles for consistency
Some checks failed
CI Code / Check coding style (pull_request) Successful in 32s
CI Code / Check spelling (pull_request) Successful in 19s
CI Code / Linux (debian) (pull_request) Failing after 11m49s
CI Code / Linux (arch) (pull_request) Successful in 13m58s
CI Code / Linux (ubuntu) (pull_request) Successful in 2h35m33s

This commit is contained in:
2025-12-21 15:16:12 +03:00
parent b4dd64a0c9
commit c33884ddc4
5 changed files with 8 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
FROM archlinux
ENV TERM=xterm
RUN pacman -Syu --noconfirm
RUN pacman -S --needed --noconfirm reflector && reflector --latest 20 --protocol https --sort rate --save /etc/pacman.d/mirrorlist
RUN pacman-key --init

View File

@@ -1,6 +1,9 @@
# Build the latest Debian testing image
FROM debian:testing
ENV DEBIAN_FRONTEND="noninteractive"
ENV TERM=xterm
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
autoconf-archive \

View File

@@ -42,6 +42,7 @@ RUN dnf install -y \
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV TERM=xterm
RUN mkdir -p /usr/src
WORKDIR /usr/src

View File

@@ -41,6 +41,7 @@ RUN zypper --non-interactive in --no-recommends \
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV TERM=xterm
RUN mkdir -p /usr/src
WORKDIR /usr/src

View File

@@ -1,6 +1,7 @@
FROM ubuntu:latest
ENV DEBIAN_FRONTEND="noninteractive"
ENV TERM=xterm
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \