Define TERM and friends.

This commit is contained in:
Greyscale 2022-08-28 12:11:20 +02:00
parent a4a461caaf
commit 22a2462792
No known key found for this signature in database
GPG key ID: 74BAFF55434DA4B2

View file

@ -1,6 +1,9 @@
ARG MARIADB_VERSION=10.9
FROM mariadb:$MARIADB_VERSION AS mysql
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
ENV DEBIAN_FRONTEND="teletype" \
TERM=xterm-256color \
COMPOSER_ALLOW_SUPERUSER=1
RUN echo "APT::Acquire::Retries \"5\";" > /etc/apt/apt.conf.d/80-retries && \
echo "Acquire::http::No-Cache=true;" > /etc/apt/apt.conf.d/80-no-cache && \
echo "Acquire::http::Pipeline-Depth=0;" > /etc/apt/apt.conf.d/80-no-pipeline && \