96 lines
No EOL
3.6 KiB
Docker
96 lines
No EOL
3.6 KiB
Docker
ARG product_version=7.4.1
|
|
ARG build_number=1
|
|
ARG oo_root='/var/www/onlyoffice/documentserver'
|
|
|
|
## Setup
|
|
FROM onlyoffice/documentserver:${product_version}.${build_number} as setup-stage
|
|
ARG product_version
|
|
ARG build_number
|
|
ARG oo_root
|
|
|
|
ENV PRODUCT_VERSION=${product_version}
|
|
ENV BUILD_NUMBER=${build_number}
|
|
|
|
ARG build_deps="git make g++ nodejs npm"
|
|
RUN apt-get update && apt-get install -y ${build_deps}
|
|
# RUN npm config set registry https://registry.npm.taobao.org
|
|
RUN npm install -g pkg grunt grunt-cli
|
|
|
|
WORKDIR /build
|
|
|
|
|
|
|
|
## Clone
|
|
FROM setup-stage as clone-stage
|
|
ARG tag=v${PRODUCT_VERSION}.${BUILD_NUMBER}
|
|
|
|
RUN git clone --quiet --branch $tag --depth 1 https://github.com/ONLYOFFICE/build_tools.git /build/build_tools
|
|
RUN git clone --quiet --branch $tag --depth 1 https://github.com/ONLYOFFICE/server.git /build/server
|
|
|
|
# Working mobile editor
|
|
RUN git clone --quiet --depth 1 https://github.com/ONLYOFFICE/sdkjs.git /build/sdkjs
|
|
RUN git clone --quiet --depth 1 https://github.com/ONLYOFFICE/web-apps.git /build/web-apps
|
|
|
|
## Build
|
|
FROM clone-stage as path-stage
|
|
|
|
# patch
|
|
COPY web-apps.patch /build/web-apps.patch
|
|
RUN cd /build/web-apps && git apply /build/web-apps.patch
|
|
|
|
|
|
COPY server.patch /build/server.patch
|
|
RUN cd /build/server && git apply --ignore-space-change --ignore-whitespace /build/server.patch
|
|
|
|
|
|
|
|
#COPY convertermaster.js /build/server/FileConverter/sources/convertermaster.js
|
|
#COPY license.js /build/server/Common/sources/license.js
|
|
#COPY Makefile /build/server/Makefile
|
|
#COPY server.js /build/server/DocService/sources/server.js
|
|
#COPY constants.js /build/server/Common/srouces/constants.js
|
|
#COPY tenantManager.js /build/server/Common/srouces/tenantManager.js
|
|
|
|
## Build
|
|
FROM path-stage as build-stage
|
|
|
|
# build server with license checks patched
|
|
WORKDIR /build/server
|
|
RUN make
|
|
RUN pkg /build/build_tools/out/linux_64/onlyoffice/documentserver/server/FileConverter --targets=node14-linux -o /build/converter
|
|
RUN pkg /build/build_tools/out/linux_64/onlyoffice/documentserver/server/DocService --targets=node14-linux --options max_old_space_size=4096 -o /build/docservice
|
|
|
|
# build web-apps with mobile editing
|
|
WORKDIR /build/web-apps/build
|
|
RUN npm install
|
|
RUN grunt
|
|
|
|
## Final image
|
|
FROM onlyoffice/documentserver:${product_version}.${build_number}
|
|
ARG oo_root
|
|
|
|
#server
|
|
COPY --from=build-stage /build/converter ${oo_root}/server/FileConverter/converter
|
|
COPY --from=build-stage /build/docservice ${oo_root}/server/DocService/docservice
|
|
|
|
# Restore mobile editing using an old version of mobile editor
|
|
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/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"] |