-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build AppImage and linux binary using Ubuntu 18.04 (fixes qpdf#1068)
This is needed to get an old enough version of glibc to run the Linux binary as an AWS Lambda layer and to support some versions of CentOS.
- Loading branch information
1 parent
b6e12f4
commit da3eae3
Showing
3 changed files
with
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2023-11-20 Jay Berkenbilt <[email protected]> | ||
|
||
* Build AppImage with an older Linux distribution to support AWS | ||
Lambda. Fixes #1086. | ||
|
||
2023-10-15 Jay Berkenbilt <[email protected]> | ||
|
||
* 11.6.3: release | ||
|
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,13 +1,19 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:18.04 | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update | ||
RUN apt-get -y install screen git sudo \ | ||
build-essential pkg-config cmake \ | ||
build-essential pkg-config \ | ||
zlib1g-dev libjpeg-dev libgnutls28-dev \ | ||
python3-pip texlive-latex-extra latexmk \ | ||
inkscape imagemagick busybox-static wget fuse && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
RUN pip3 install sphinx sphinx_rtd_theme | ||
# Get cmake from pypi. We need to keep Ubuntu 18.04 for a while longer | ||
# since the glibc in Ubuntu 20.04 is too new (as of late 2023) for | ||
# Amazon Linux 2 in Lambda and for some supported CentOS versions. | ||
# When we are ready to update to 20.04 or newer, remove the version | ||
# constraint on sphinx, and install the OS package for cmake. | ||
RUN pip3 install --upgrade pip | ||
RUN pip3 install sphinx==4 sphinx_rtd_theme cmake | ||
COPY entrypoint /entrypoint | ||
RUN chmod +x /entrypoint | ||
ENTRYPOINT [ "/entrypoint" ] |
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