Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atoomic/perl-patch-docker
Docker Container with Perl version patched for Compiler
https://github.com/atoomic/perl-patch-docker
Last synced: 5 days ago
JSON representation
Docker Container with Perl version patched for Compiler
- Host: GitHub
- URL: https://github.com/atoomic/perl-patch-docker
- Owner: atoomic
- Created: 2019-12-27T17:19:25.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-29T15:19:29.000Z (almost 2 years ago)
- Last Synced: 2024-11-18T19:04:43.499Z (2 months ago)
- Language: Shell
- Size: 17.8 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker container for the Perl Compiler
## Sumary
Docker container recipes to build Perl with a few extra patches required by the Perl Compiler.
The goal is to provide a docker container to speedup the [Perl Compiler](https://github.com/atoomic/perl-compiler) testsuite.You can view the [last testsuite run here](https://github.com/atoomic/perl-compiler/actions).
The docker containers are available from the public docker hub [at00mic/perl-compiler](https://hub.docker.com/repository/docker/at00mic/perl-compiler/general).
## Tips & Tricks
### Rebuilding the image
You should not need to rebuild the container, and prefer using the one from upstream.
Docker images are automatically build and published on pushes.You can trigger a manual build locally using:
docker build . --no-cache
### Testing a container
You can test locally the container by overriding the entrypoint then bash to it.
Adjust the tag `at00mic/perl-compiler:perl-v5.30.0` to point to any other flavor you want.
(for example `at00mic/perl-compiler:latest`)docker pull at00mic/perl-compiler:perl-v5.30.0
docker rm -f mytest
docker run --name mytest --entrypoint "/bin/bash" -it -d at00mic/perl-compiler:perl-v5.30.0docker ps -a
docker exec -it mytest bash