add DEBIAN_FRONTEND
This commit is contained in:
parent
1a2d5bc74e
commit
e7614b8ebf
2 changed files with 4 additions and 0 deletions
1
.vscode/settings.json
vendored
1
.vscode/settings.json
vendored
|
|
@ -85,6 +85,7 @@
|
|||
"muxdelay",
|
||||
"mweb",
|
||||
"nodesc",
|
||||
"noninteractive",
|
||||
"noprogress",
|
||||
"onefile",
|
||||
"pathex",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@ ENV PYTHONFAULTHANDLER=1
|
|||
ENV PIP_NO_CACHE_DIR=off
|
||||
ENV PIP_CACHE_DIR=/root/.cache/pip
|
||||
ENV UV_CACHE_DIR=/root/.cache/uv
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# Install build dependencies and uv
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
|
|
@ -44,6 +45,8 @@ ENV PYDEVD_DISABLE_FILE_VALIDATION=1
|
|||
ENV PYTHONDONTWRITEBYTECODE=1
|
||||
ENV PYTHONFAULTHANDLER=1
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN mkdir /config /downloads && ln -snf /usr/share/zoneinfo/${TZ} /etc/localtime && echo ${TZ} > /etc/timezone && \
|
||||
apt-get update && apt-get install -y --no-install-recommends \
|
||||
bash mkvtoolnix patch aria2 curl ca-certificates xz-utils git sqlite3 tzdata file libmagic1 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue