From 7d2680827d4e0605faae750637672e7acad826e5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Jun 2025 13:54:43 +0000 Subject: [PATCH 1/3] Initial plan for issue 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 2/3] 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 \ From 4f24e41d80746268140b3f57fd1b2ffb2cf24b58 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Jun 2025 15:51:26 +0000 Subject: [PATCH 3/3] Remove quotes from remaining ENV variables for consistency Co-authored-by: andrejusk <7396847+andrejusk@users.noreply.github.com> --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 91b8509..2aece79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,10 +41,10 @@ WORKDIR "$DOTFILES_DIR" # FROM source AS install -ENV USER="test-user" -ENV SKIP_SUDO_CHECK="true" -ENV SKIP_SSH_CONFIG="true" -ENV SKIP_DOCKER_CONFIG="true" +ENV USER=test-user +ENV SKIP_SUDO_CHECK=true +ENV SKIP_SSH_CONFIG=true +ENV SKIP_DOCKER_CONFIG=true USER test-user ARG UUID="docker"