mirror of
https://github.com/jumpserver/lina.git
synced 2026-02-21 14:13:42 +00:00
* change theme * perf: Update Dockerfile with new base image tag * optimism some icon * perf: Update Dockerfile with new base image tag * Modify the styles of some prompt-related components * Make some adjustments to the styles of the table and menu * perf: Optimize the logic of style variables * restore radius style * reset some styles * border and main style * Optimize the style of the shuttle box * change some styles * adapt backend color * Optimize the background color when the menu is expanded * Modify the display format of the logo * perf: navleft remove login_title --------- Co-authored-by: zhaojisen <1301338853@qq.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: feng <1304903146@qq.com>
15 lines
401 B
Docker
15 lines
401 B
Docker
FROM jumpserver/lina-base:20260114_045651 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
|