-
Notifications
You must be signed in to change notification settings - Fork 522
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/Docker-DocumentServer/pulls/13 Reviewed-by: Alexey Golubev <[email protected]> Co-authored-by: Nasrullo Nurullaev <[email protected]> Co-committed-by: Nasrullo Nurullaev <[email protected]>
- Loading branch information
1 parent
19c2c0b
commit 2e4c0e7
Showing
2 changed files
with
9 additions
and
5 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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
ARG BASE_VERSION=22.04 | ||
ARG BASE_VERSION=24.04 | ||
|
||
ARG BASE_IMAGE=ubuntu:$BASE_VERSION | ||
|
||
FROM ${BASE_IMAGE} AS documentserver | ||
LABEL maintainer Ascensio System SIA <[email protected]> | ||
|
||
ARG BASE_VERSION | ||
ARG PG_VERSION=14 | ||
ARG PG_VERSION=16 | ||
ARG PACKAGE_SUFFIX=t64 | ||
|
||
ENV OC_RELEASE_NUM=21 | ||
ENV OC_RU_VER=12 | ||
|
@@ -26,7 +27,9 @@ RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ | |
apt-get -y update && \ | ||
apt-get -yq install wget apt-transport-https gnupg locales lsb-release && \ | ||
wget -q -O /etc/apt/sources.list.d/mssql-release.list https://packages.microsoft.com/config/ubuntu/$BASE_VERSION/prod.list && \ | ||
wget -q -O - https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \ | ||
wget -q -O /tmp/microsoft.asc https://packages.microsoft.com/keys/microsoft.asc && \ | ||
apt-key add /tmp/microsoft.asc && \ | ||
gpg --dearmor -o /usr/share/keyrings/microsoft-prod.gpg < /tmp/microsoft.asc && \ | ||
apt-get -y update && \ | ||
locale-gen en_US.UTF-8 && \ | ||
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections && \ | ||
|
@@ -38,8 +41,8 @@ RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d && \ | |
cron \ | ||
curl \ | ||
htop \ | ||
libaio1 \ | ||
libasound2 \ | ||
libaio1${PACKAGE_SUFFIX} \ | ||
libasound2${PACKAGE_SUFFIX} \ | ||
libboost-regex-dev \ | ||
libcairo2 \ | ||
libcurl3-gnutls \ | ||
|