From 6beca6f79a2ec9f91f0a651e4b4fec3098e3dffe Mon Sep 17 00:00:00 2001 From: JiriUhlir <149317995+JiriUhlir@users.noreply.github.com> Date: Thu, 16 Jul 2026 12:17:47 +0200 Subject: [PATCH] ownership problem fix --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1a5d3be..8a065af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,13 @@ FROM python:3.12-slim WORKDIR /app -# Bez nastaveného locale dekóduje kontejner výstupy v C/ASCII a česká diakritika -# se rozbije. C.UTF-8 je v python:slim vždy k dispozici. ENV LANG=C.UTF-8 \ LC_ALL=C.UTF-8 \ PYTHONIOENCODING=utf-8 RUN apt-get update \ && apt-get install -y --no-install-recommends git curl \ + && git config --system --add safe.directory "*" \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt . @@ -19,4 +18,4 @@ COPY app ./app EXPOSE 9100 -CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "9100", "--root-path", "/portal"] +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "9100", "--root-path", "/portal"] \ No newline at end of file