summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2025-09-20 13:25:37 +0200
committerGitHub <noreply@github.com>2025-09-20 07:25:37 -0400
commitefc86af5a6852987a86a09f4e307432ccabb7c6e (patch)
tree028b88095e68f79e012726c261e287921cb9afe6 /Dockerfile
parent9f9cced862f50517a546d7513d4d7a0a6fc1a186 (diff)
Compiled translation when building the docker image (#2199)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index efb4253f..e91f1bf6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -45,5 +45,7 @@ RUN apt-get update \
# copy project
COPY . .
+RUN python -m django compilemessages
+
# ENTRYPOINT is specified only in the local docker-compose.yml to avoid
# accidentally running it in deployed environments.