release 1.2

This commit is contained in:
2026-03-03 22:43:26 +03:00
parent 651631b3c7
commit 40dec27d41
27 changed files with 494 additions and 496 deletions
+33
View File
@@ -0,0 +1,33 @@
FROM ghcr.io/astral-sh/uv:python3.13-bookworm-slim
WORKDIR /app
# Install all WeasyPrint dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
python3-dev \
python3-pip \
python3-setuptools \
python3-wheel \
python3-cffi \
libcairo2 \
libpango-1.0-0 \
libpangocairo-1.0-0 \
libgdk-pixbuf-2.0-0 \
libffi-dev \
shared-mime-info \
libpangoft2-1.0-0 \
libharfbuzz0b \
libthai0 \
fonts-dejavu \
fonts-liberation \
fonts-freefont-ttf \
&& rm -rf /var/lib/apt/lists/*
COPY . .
RUN uv sync --frozen
RUN chmod +x /app/start.sh
CMD ["/app/start.sh"]