No description
Find a file
Tianon Gravi 22f7d649e2 Update old Perls from jessie to stretch (and test them all in Actions)
Additionally, add buster to all of them.

Finally, move all EOL versions into a completely separate `eol/` directory so that the repository is a little easier manage (and so we can limit testing of all old EOL versions to only when something inside the `eol/` directory changes).
2021-05-18 13:57:40 +08:00
.github/workflows Update old Perls from jessie to stretch (and test them all in Actions) 2021-05-18 13:57:40 +08:00
5.028.003-main,threaded-buster ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.028.003-main,threaded-stretch ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.028.003-main-buster ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.028.003-main-stretch ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.028.003-slim,threaded-buster ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.028.003-slim,threaded-stretch ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.028.003-slim-buster ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.028.003-slim-stretch ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.030.003-main,threaded-buster ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.030.003-main,threaded-stretch ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.030.003-main-buster ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.030.003-main-stretch ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.030.003-slim,threaded-buster ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.030.003-slim,threaded-stretch ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.030.003-slim-buster ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.030.003-slim-stretch ⚙️ Regenerate Dockerfiles and patches for older Perls 2021-01-26 11:10:01 +08:00
5.032.001-main,threaded-buster ⚙️ Generate Dockerfiles and patches for 5.32.1 2021-01-25 15:22:53 +08:00
5.032.001-main,threaded-stretch ⚙️ Generate Dockerfiles and patches for 5.32.1 2021-01-25 15:22:53 +08:00
5.032.001-main-buster ⚙️ Generate Dockerfiles and patches for 5.32.1 2021-01-25 15:22:53 +08:00
5.032.001-main-stretch ⚙️ Generate Dockerfiles and patches for 5.32.1 2021-01-25 15:22:53 +08:00
5.032.001-slim,threaded-buster ⚙️ Generate Dockerfiles and patches for 5.32.1 2021-01-25 15:22:53 +08:00
5.032.001-slim,threaded-stretch ⚙️ Generate Dockerfiles and patches for 5.32.1 2021-01-25 15:22:53 +08:00
5.032.001-slim-buster ⚙️ Generate Dockerfiles and patches for 5.32.1 2021-01-25 15:22:53 +08:00
5.032.001-slim-stretch ⚙️ Generate Dockerfiles and patches for 5.32.1 2021-01-25 15:22:53 +08:00
downloads Update old Perls from jessie to stretch (and test them all in Actions) 2021-05-18 13:57:40 +08:00
eol Update old Perls from jessie to stretch (and test them all in Actions) 2021-05-18 13:57:40 +08:00
.gitignore Ignore downloads 2015-04-15 22:06:35 -04:00
.perltidyrc 💄 Add Perl::Tidy for development 2018-08-04 19:46:34 +08:00
config.yml Update old Perls from jessie to stretch (and test them all in Actions) 2021-05-18 13:57:40 +08:00
cpanfile Remove 5.26-5.28 Time::Local patches 2020-03-16 15:17:23 +08:00
generate.pl Update old Perls from jessie to stretch (and test them all in Actions) 2021-05-18 13:57:40 +08:00
LICENSE Initial commit 2014-07-06 18:43:53 -04:00
README.md README.md: Update directory structure description 2019-07-27 10:32:22 +08:00

docker-perl

This project is the source for the Docker perl repo; for more details, take a look at https://registry.hub.docker.com/_/perl/.

The structure of this repo is to use the full version ID of each Perl version, plus a comma separate list of extensions, followed by the Debian release codename that the resulting Docker image will be based from.

The Docker Perl image now builds and runs in architectures other than amd64, such as i386 and arm64v8; see docker-library/official-images for the details.

Getting Started

The individual Dockerfiles are generated via generate.pl, which uses Releases.yaml to populate the individual files. This needs the Devel::PatchPerl and YAML::XS modules, which you can install by doing cpanm --installdeps . in this repository's root directory.

To regenerate the Dockerfiles, just run ./generate.pl. Do note that this might take time as it will download the Perl source tarballs for each version to re-patch with updates from Devel::PatchPerl as needed. Also, it is advised to update Devel::PatchPerl as soon as a new version comes out.

For older versions of Perl, some patches may be necessary to build properly on a current base OS. In those cases, perl -V will show the locally applied patches. These changes should be limited to Configure rather than to code itself, and will be a cherry pick or back port of a patch from the mainline perl branch whenever possible.