4.1 KiB
Supported tags and respective Dockerfile links
latest,5,5.26,5.26.0(5.026.000-64bit/Dockerfile)threaded,5-threaded,5.26-threaded,5.26.0-threaded(5.026.000-64bit,threaded/Dockerfile)5.24,5.24.2(5.024.002-64bit/Dockerfile)5.24-threaded,5.24.2-threaded(5.024.002-64bit,threaded/Dockerfile)5.22,5.22.4(5.022.004-64bit/Dockerfile)5.22-threaded,5.22.4-threaded(5.022.004-64bit,threaded/Dockerfile)
Quick reference
-
Where to get help:
the Docker Community Forums, the Docker Community Slack, or Stack Overflow -
Where to file issues:
https://github.com/Perl/docker-perl/issues -
Maintained by:
the Perl Community -
Published image artifact details:
repo-info repo'srepos/perl/directory (history)
(image metadata, transfer size, etc) -
Image updates:
official-images PRs with labellibrary/perl
official-images repo'slibrary/perlfile (history) -
Source of this description:
docs repo'sperl/directory (history) -
Supported Docker versions:
the latest release (down to 1.6 on a best-effort basis)
What is Perl?
Perl is a high-level, general-purpose, interpreted, dynamic programming language. The Perl language borrows features from other programming languages, including C, shell scripting (sh), AWK, and sed.
How to use this image
Create a Dockerfile in your Perl app project
FROM perl:5.20
COPY . /usr/src/myapp
WORKDIR /usr/src/myapp
CMD [ "perl", "./your-daemon-or-script.pl" ]
Then, build and run the Docker image:
$ docker build -t my-perl-app .
$ docker run -it --rm --name my-running-app my-perl-app
Run a single Perl script
For many simple, single file projects, you may find it inconvenient to write a complete Dockerfile. In such cases, you can run a Perl script by using the Perl Docker image directly:
$ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/myapp -w /usr/src/myapp perl:5.20 perl your-daemon-or-script.pl
License
View license information for the software contained in this image.
