Fix DEBIAN_FRONTEND environment variable by removing quotes

Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-06-04 13:59:15 +00:00
parent 7d2680827d
commit 22fd25eb09

View File

@@ -4,7 +4,7 @@
FROM debian:bookworm-slim AS base FROM debian:bookworm-slim AS base
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections 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 update
RUN apt-get -qq install --no-install-recommends \ RUN apt-get -qq install --no-install-recommends \
bc \ bc \