gitea user and pswd, some pages removed, logs

This commit is contained in:
JiriUhlir
2026-06-17 11:39:52 +02:00
parent 23bbcad835
commit 7897e3b876
18 changed files with 601 additions and 457 deletions
+6
View File
@@ -2,6 +2,12 @@ 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 \
&& rm -rf /var/lib/apt/lists/*