Files
lina/Dockerfile
fit2bot 217a09ebd6 perf: global search (#5171)
* perf: global search

* perf: Update Dockerfile with new base image tag

* perf: 完成基本搜索

* perf: show search direct

* perf: change search style

* perf: 优化 panel 格式,不再用 select

* perf: search add route

* perf: add route search

* perf: change view

---------

Co-authored-by: ibuler <ibuler@qq.com>
2025-09-05 16:39:37 +08:00

15 lines
401 B
Docker

FROM jumpserver/lina-base:20250901_103352 AS stage-build
ARG VERSION
ENV VERSION=$VERSION
ADD . /data
RUN --mount=type=cache,target=/usr/local/share/.cache/yarn,sharing=locked \
sed -i "s@version-dev@${VERSION}@g" src/layout/components/NavHeader/About.vue \
&& yarn build
FROM nginx:1.24-bullseye
COPY --from=stage-build /data/lina /opt/lina
COPY nginx.conf /etc/nginx/conf.d/default.conf