From 2fca2bb65fa4bef34ebd9efe71223cbb18d32994 Mon Sep 17 00:00:00 2001 From: synt-xerror <169557594+synt-xerror@users.noreply.github.com> Date: Tue, 21 Apr 2026 12:56:59 -0300 Subject: [PATCH] Set terminal to UTF8 so we can see the qr code --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 58012c1..1f8ec52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,10 @@ RUN apt-get update && apt-get install -y \ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true \ PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium +# Set terminal to UTF-8 to suport QR Code characters +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 + WORKDIR /app # Copy package files and install dependencies