fix: DEBIAN_FRONTEND=noninteractive
This commit is contained in:
parent
633e6f4795
commit
a7b4b882c6
@ -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/
|
||||||
|
|
||||||
|
@ -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 \
|
||||||
|
@ -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 \
|
||||||
|
@ -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 \
|
||||||
|
@ -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 \
|
||||||
|
@ -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 \
|
||||||
|
Loading…
Reference in New Issue
Block a user