-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from ONLYOFFICE/release/v7.3.2
Merge release/v7.3.2 into master
- Loading branch information
Showing
4 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,8 @@ RUN yum install sudo -y && \ | |
FROM ds-base AS ds-service | ||
ARG TARGETARCH | ||
ARG PRODUCT_EDITION= | ||
ARG PRODUCT_URL=http://download.onlyoffice.com/install/documentserver/linux/onlyoffice-documentserver$PRODUCT_EDITION.$TARGETARCH.rpm | ||
ARG RELEASE_VERSION | ||
ARG PRODUCT_URL=https://download.onlyoffice.com/install/documentserver/linux/onlyoffice-documentserver$PRODUCT_EDITION$RELEASE_VERSION.$TARGETARCH.rpm | ||
ENV TARGETARCH=$TARGETARCH | ||
RUN useradd --no-create-home --shell /sbin/nologin nginx && \ | ||
yum -y updateinfo && \ | ||
|
@@ -191,8 +192,7 @@ COPY --from=ds-service \ | |
/usr/lib64/libDjVuFile.so \ | ||
/usr/lib64/libEpubFile.so \ | ||
/usr/lib64/libFb2File.so \ | ||
/usr/lib64/libPdfReader.so \ | ||
/usr/lib64/libPdfWriter.so \ | ||
/usr/lib64/libPdfFile.so \ | ||
/usr/lib64/libHtmlFile2.so \ | ||
/usr/lib64/libHtmlRenderer.so \ | ||
/usr/lib64/libUnicodeConverter.so \ | ||
|
@@ -252,10 +252,15 @@ ENTRYPOINT /var/www/onlyoffice/documentserver-example/docker-entrypoint.sh npm s | |
FROM alpine:latest AS utils | ||
LABEL maintainer Ascensio System SIA <[email protected]> | ||
RUN apk add bash postgresql-client mysql-client curl wget && \ | ||
curl -LO \ | ||
https://storage.googleapis.com/kubernetes-release/release/`curl \ | ||
-s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl && \ | ||
chmod +x ./kubectl && \ | ||
mv ./kubectl /usr/local/bin/kubectl && \ | ||
addgroup --system --gid 101 ds && \ | ||
adduser --system -G ds -h /home/ds --shell /bin/bash --uid 101 ds && \ | ||
mkdir /sql && \ | ||
chown -R ds:ds /sql | ||
mkdir /scripts && \ | ||
chown -R ds:ds /scripts | ||
USER ds | ||
|
||
FROM statsd/statsd AS metrics | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters