Created
December 5, 2019 15:35
-
-
Save JJ/c581cc93b3d7d63da61538be7b265151 to your computer and use it in GitHub Desktop.
Raku Dockerfile for Container Action
This file contains hidden or 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
FROM jjmerelo/alpine-perl6:latest | |
LABEL version="4.0.2" maintainer="JJ Merelo <[email protected]>" | |
# Set up dirs | |
ENV PATH="/root/.rakudobrew/versions/moar-2019.11/install/bin:/root/.rakudobrew/versions/moar-2019.11/install/share/perl6/site/bin:/root/.rakudobrew/bin:${PATH}" | |
RUN mkdir /test | |
VOLUME /test | |
WORKDIR /test | |
# Will run this | |
ENTRYPOINT raku -v && zef install --deps-only . && zef test . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment