trying to add gitea

This commit is contained in:
2025-09-22 10:12:07 -04:00
parent 95273be0b0
commit 7de99ef945
4 changed files with 9 additions and 5 deletions
+3 -2
View File
@@ -1,14 +1,15 @@
FROM python:3.11-slim
# Build argument for git branch
# Build argument for git branch and build source
ARG GIT_BRANCH=main
ARG BUILD_SOURCE=
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PYTHONIOENCODING=utf-8 \
GIT_BRANCH=${GIT_BRANCH} \
GITEA_BUILD=true
BUILD_SOURCE=${BUILD_SOURCE}
# Install system dependencies including PostgreSQL client libraries
RUN apt-get update && apt-get install -y \