Automate build number tagging and sync

This commit is contained in:
2026-01-25 14:52:38 +13:00
parent 38eee2407b
commit 615c4c1c29
5 changed files with 36 additions and 3 deletions

View File

@@ -2,8 +2,11 @@ FROM python:3.12-slim
WORKDIR /app
ARG BUILD_NUMBER=dev
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
PYTHONUNBUFFERED=1 \
SITE_BUILD_NUMBER=${BUILD_NUMBER}
COPY backend/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt