Fix gitea env + proposer modal + favicon/nginx — 2026-01-31
All checks were successful
CI / build-and-anchors (push) Successful in 1m31s
SMOKE / smoke (push) Successful in 24s

This commit is contained in:
archicratia
2026-01-31 16:33:13 +00:00
parent 60d88939b0
commit 7f871ca46f
14 changed files with 37 additions and 31 deletions

View File

@@ -10,7 +10,7 @@ ENV npm_config_update_notifier=false \
npm_config_progress=false
# (Optionnel mais propre) git + certificats
RUN --network=host apt-get -o Acquire::Retries=5 -o Acquire::ForceIPv4=true update \
RUN apt-get -o Acquire::Retries=5 -o Acquire::ForceIPv4=true update \
&& apt-get install -y --no-install-recommends ca-certificates git \
&& rm -rf /var/lib/apt/lists/*
@@ -36,4 +36,6 @@ RUN npm run build
FROM nginx:1.27-alpine AS runtime
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist/ /usr/share/nginx/html/
RUN find /usr/share/nginx/html -type d -exec chmod 755 {} \; \
&& find /usr/share/nginx/html -type f -exec chmod 644 {} \;
EXPOSE 80