浏览代码

Fix frontend build (#1118)

Robert Brennan 1 年之前
父节点
当前提交
474aafbc79
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      container/Dockerfile

+ 1 - 2
container/Dockerfile

@@ -6,8 +6,7 @@ COPY ./frontend/package.json frontend/package-lock.json ./
 RUN npm install
 
 COPY ./frontend ./
-RUN npm run build
-
+RUN npm run make-i18n && npm run build
 
 FROM python:3.12-slim as runtime