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
|
||||
ENV VIRTUAL_ENV="/opt/venv" \
|
||||
ENV DEBIAN_FRONTEND=noninteractive \
|
||||
VIRTUAL_ENV="/opt/venv" \
|
||||
PATH="/opt/venv/bin:$PATH"
|
||||
WORKDIR /app/
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
FROM docker.io/debian:12-slim
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
bind9 \
|
||||
|
@ -1,4 +1,5 @@
|
||||
FROM docker.io/nginx:latest
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
cron \
|
||||
|
@ -1,4 +1,5 @@
|
||||
FROM docker.io/debian:12-slim
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
dovecot-imapd \
|
||||
|
@ -1,4 +1,5 @@
|
||||
FROM docker.io/debian:12-slim
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
postfix \
|
||||
|
@ -1,4 +1,5 @@
|
||||
FROM docker.io/coturn/coturn:4.6
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
USER root
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
|
Loading…
Reference in New Issue
Block a user