chore: upgrade deps

This commit is contained in:
2026-03-05 09:53:21 +01:00
parent 48b53d851a
commit be87ab4fa1
13 changed files with 3974 additions and 59 deletions
+4 -3
View File
@@ -2,19 +2,20 @@ FROM python:3.13-slim
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV UV_SYSTEM_PYTHON=1
RUN mkdir /code
WORKDIR /code
COPY requirements.txt /code
COPY pyproject.toml /code
RUN apt-get update && \
apt-get install -y gcc git nginx gettext vim libpq-dev && \
pip install -r requirements.txt && \
pip install uv && \
uv pip install -r pyproject.toml && \
apt-get autoremove -y
COPY . /code
COPY nginx/nginx.conf /etc/nginx/sites-enabled/default
RUN ["sh", "scripts/build_static.sh"]
CMD ["sh", "./scripts/run.sh"]