From 38517ae726398c7c5c54841ed2117f2c42c1d748 Mon Sep 17 00:00:00 2001 From: naskya Date: Wed, 27 Dec 2023 16:04:40 +0900 Subject: [PATCH] chore: specify DEBIAN_FRONTEND=noninteractive in docker build --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index bcc628f0e..783cd1bbf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM node:21-slim as build WORKDIR /firefish # Install compilation dependencies +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y python3 git wget curl build-essential RUN mkdir -m777 /opt/rust /opt/cargo ENV RUSTUP_HOME=/opt/rust CARGO_HOME=/opt/cargo PATH=/opt/cargo/bin:$PATH @@ -59,6 +60,7 @@ FROM node:21-slim WORKDIR /firefish # Install runtime dependencies +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y --no-install-recommends zip unzip tini ffmpeg COPY . ./