-
Notifications
You must be signed in to change notification settings - Fork 28
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 #257 from bgilbert/builders
builder: minor cleanups
- Loading branch information
Showing
3 changed files
with
7 additions
and
8 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,12 +1,13 @@ | ||
# Use a Linux distro with an older glibc for maximum compatibility | ||
FROM quay.io/almalinuxorg/almalinux:8 | ||
# NOTE: try to keep the current container image compatible with the latest | ||
# stable source release, so people can conveniently build from the source zip | ||
# stable source release, so people can conveniently build from the source | ||
# tarball | ||
RUN touch /etc/openslide-linux-builder-v2 | ||
RUN dnf -y upgrade && \ | ||
dnf -y install 'dnf-command(config-manager)' epel-release && \ | ||
dnf config-manager --set-enabled powertools && \ | ||
dnf -y install gcc-c++ git-core nasm ninja-build patchelf python3.11-pip \ | ||
unzip && \ | ||
dnf -y install gcc-c++ git-core nasm ninja-build patchelf \ | ||
python3.11-pip && \ | ||
dnf clean all | ||
RUN pip3 install auditwheel meson tomli |
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 was deleted.
Oops, something went wrong.