Skip to content

Commit edae8fa

Browse files
authored
Merge pull request #7 from Perl/oalders/perl-helpers
Add github-perl-helpers bin scripts to /usr/local/bin
2 parents 5f8e13d + 0e17c35 commit edae8fa

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,17 @@ RUN apt-get update && \
1212
apt-get -y --no-install-recommends install aspell aspell-en
1313

1414
RUN cpanm --self-upgrade || \
15-
( echo "# Installing cpanminus:"; curl -sL https://cpanmin.us/ | perl - App::cpanminus )
15+
( echo "# Installing cpanminus:"; curl -sL https://cpanmin.us/ | perl - App::cpanminus )
1616

1717
RUN cpanm -nq App::cpm Carton::Snapshot
1818

1919
RUN cpm install -g --show-build-log-on-failure --cpanfile /tmp/cpanfile
2020

2121
RUN cpan-outdated --exclude-core -p | xargs -n1 cpanm
2222

23+
WORKDIR /tmp/
24+
RUN git clone https://github.com/oalders/github-perl-helpers.git --depth 1 && \
25+
cp github-perl-helpers/bin/* /usr/local/bin/ && \
26+
rm -rf github-perl-helpers
27+
2328
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)