From 22fd25eb09c05d2a3ed0ee98ab560596cfea4b71 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Jun 2025 13:59:15 +0000 Subject: [PATCH] Fix DEBIAN_FRONTEND environment variable by removing quotes Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b2816ec..91b8509 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM debian:bookworm-slim AS base RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections -ENV DEBIAN_FRONTEND="noninteractive" +ENV DEBIAN_FRONTEND=noninteractive RUN apt-get -qq update RUN apt-get -qq install --no-install-recommends \ bc \