Update 7.4.1.1
This commit is contained in:
parent
33c90baec7
commit
404b4e9f88
3 changed files with 23 additions and 2 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "onlyoffice-chinese-fonts"]
|
||||||
|
path = onlyoffice-chinese-fonts
|
||||||
|
url = https://github.com/funggtopp/onlyoffice-chinese-fonts.git
|
21
Dockerfile
21
Dockerfile
|
@ -1,5 +1,5 @@
|
||||||
ARG product_version=7.3.3
|
ARG product_version=7.4.1
|
||||||
ARG build_number=50
|
ARG build_number=1
|
||||||
ARG oo_root='/var/www/onlyoffice/documentserver'
|
ARG oo_root='/var/www/onlyoffice/documentserver'
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
@ -77,3 +77,20 @@ COPY --from=build-stage /build/docservice ${oo_root}/server/DocService/docservic
|
||||||
COPY --from=build-stage /build/web-apps/deploy/web-apps/apps/documenteditor/mobile ${oo_root}/web-apps/apps/documenteditor/mobile
|
COPY --from=build-stage /build/web-apps/deploy/web-apps/apps/documenteditor/mobile ${oo_root}/web-apps/apps/documenteditor/mobile
|
||||||
COPY --from=build-stage /build/web-apps/deploy/web-apps/apps/presentationeditor/mobile ${oo_root}/web-apps/apps/presentationeditor/mobile
|
COPY --from=build-stage /build/web-apps/deploy/web-apps/apps/presentationeditor/mobile ${oo_root}/web-apps/apps/presentationeditor/mobile
|
||||||
COPY --from=build-stage /build/web-apps/deploy/web-apps/apps/spreadsheeteditor/mobile ${oo_root}/web-apps/apps/spreadsheeteditor/mobile
|
COPY --from=build-stage /build/web-apps/deploy/web-apps/apps/spreadsheeteditor/mobile ${oo_root}/web-apps/apps/spreadsheeteditor/mobile
|
||||||
|
|
||||||
|
# 移除字体
|
||||||
|
RUN rm -rf /usr/share/fonts/truetype/dejavu
|
||||||
|
RUN rm -rf /usr/share/fonts/truetype/liberation
|
||||||
|
|
||||||
|
# 导入中文字体
|
||||||
|
ADD ["onlyoffice-chinese-fonts/fonts for oo6/*", "/usr/share/fonts/truetype/custom/"]
|
||||||
|
|
||||||
|
# 修正hightlight js引用问题
|
||||||
|
RUN sed -i "s/https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/2.2.2\/jquery.min.js/vendor\/jQuery-2.2.2-min\/jquery-v2.2.2-min.js/" /var/www/onlyoffice/documentserver/sdkjs-plugins/highlightcode/index.html
|
||||||
|
|
||||||
|
EXPOSE 80 443
|
||||||
|
|
||||||
|
ARG COMPANY_NAME=onlyoffice
|
||||||
|
VOLUME /var/log/$COMPANY_NAME /var/lib/$COMPANY_NAME /var/www/$COMPANY_NAME/Data /var/lib/postgresql /var/lib/rabbitmq /var/lib/redis /usr/share/fonts/truetype/custom
|
||||||
|
|
||||||
|
ENTRYPOINT ["/app/ds/run-document-server.sh"]
|
1
onlyoffice-chinese-fonts
Submodule
1
onlyoffice-chinese-fonts
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 6c31615fe96cf1d379604dee365534e0b8ad8a96
|
Loading…
Reference in a new issue