fix: DEBIAN_FRONTEND=noninteractive

This commit is contained in:
ange 2024-03-07 17:57:19 +01:00
parent 633e6f4795
commit a7b4b882c6
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
6 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,6 @@
FROM docker.io/python:3.12-slim as base FROM docker.io/python:3.12-slim as base
ENV VIRTUAL_ENV="/opt/venv" \ ENV DEBIAN_FRONTEND=noninteractive \
VIRTUAL_ENV="/opt/venv" \
PATH="/opt/venv/bin:$PATH" PATH="/opt/venv/bin:$PATH"
WORKDIR /app/ WORKDIR /app/

View File

@ -1,4 +1,5 @@
FROM docker.io/debian:12-slim FROM docker.io/debian:12-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
bind9 \ bind9 \

View File

@ -1,4 +1,5 @@
FROM docker.io/nginx:latest FROM docker.io/nginx:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
cron \ cron \

View File

@ -1,4 +1,5 @@
FROM docker.io/debian:12-slim FROM docker.io/debian:12-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
dovecot-imapd \ dovecot-imapd \

View File

@ -1,4 +1,5 @@
FROM docker.io/debian:12-slim FROM docker.io/debian:12-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
postfix \ postfix \

View File

@ -1,4 +1,5 @@
FROM docker.io/coturn/coturn:4.6 FROM docker.io/coturn/coturn:4.6
ENV DEBIAN_FRONTEND=noninteractive
USER root USER root
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \