From e7898258525b40673c4132d0e88ae39fa235a387 Mon Sep 17 00:00:00 2001 From: shaohuzhang1 <80892890+shaohuzhang1@users.noreply.github.com> Date: Tue, 21 Jan 2025 10:22:28 +0800 Subject: [PATCH] feat: compilemessages i18n (#2048) --- installer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installer/Dockerfile b/installer/Dockerfile index 9c5cdaf49..914251cfa 100644 --- a/installer/Dockerfile +++ b/installer/Dockerfile @@ -26,7 +26,8 @@ RUN python3 -m venv /opt/py3 && \ poetry config virtualenvs.create false && \ . /opt/py3/bin/activate && \ if [ "$(uname -m)" = "x86_64" ]; then sed -i 's/^torch.*/torch = {version = "^2.2.1+cpu", source = "pytorch"}/g' pyproject.toml; fi && \ - poetry install + poetry install && \ + python3 /opt/maxkb/app/apps/manage.py compilemessages FROM ghcr.io/1panel-dev/maxkb-python-pg:python3.11-pg15.8 ARG DOCKER_IMAGE_TAG=dev \