ownership problem fix

This commit is contained in:
JiriUhlir
2026-07-16 12:17:47 +02:00
parent ec9a643291
commit 6beca6f79a
+2 -3
View File
@@ -2,14 +2,13 @@ FROM python:3.12-slim
WORKDIR /app 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 \ ENV LANG=C.UTF-8 \
LC_ALL=C.UTF-8 \ LC_ALL=C.UTF-8 \
PYTHONIOENCODING=utf-8 PYTHONIOENCODING=utf-8
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends git curl \ && apt-get install -y --no-install-recommends git curl \
&& git config --system --add safe.directory "*" \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
COPY requirements.txt . COPY requirements.txt .
@@ -19,4 +18,4 @@ COPY app ./app
EXPOSE 9100 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"]