Everything should have the bitness

This commit is contained in:
Peter Martini 2014-07-06 23:32:34 -04:00
parent 1cf4bf2414
commit 983d83ff0f
2 changed files with 0 additions and 40 deletions

View file

@ -1,20 +0,0 @@
FROM buildpack-deps
MAINTAINER Peter Martini <PeterCMartini@GMail.com>
RUN apt-get update && apt-get install -y curl procps
RUN mkdir /usr/src/perl
WORKDIR /usr/src/perl
RUN curl -SL http://www.cpan.org/src/5.0/perl-5.20.0.tar.gz \
| tar -xz --strip-components=1
RUN ./Configure -Dusethreads -des \
&& make -j$(nproc) \
&& TEST_JOBS=$(nproc) make test_harness \
&& make install \
&& make veryclean
CMD ["perl5.20.0 -V"]
WORKDIR /root
RUN rm -fR /usr/src/perl

View file

@ -1,20 +0,0 @@
FROM buildpack-deps
MAINTAINER Peter Martini <PeterCMartini@GMail.com>
RUN apt-get update && apt-get install -y curl procps
RUN mkdir /usr/src/perl
WORKDIR /usr/src/perl
RUN curl -SL http://www.cpan.org/src/5.0/perl-5.20.0.tar.gz \
| tar -xz --strip-components=1
RUN ./Configure -des \
&& make -j$(nproc) \
&& TEST_JOBS=$(nproc) make test_harness \
&& make install \
&& make veryclean
CMD ["perl5.20.0 -V"]
WORKDIR /root
RUN rm -fR /usr/src/perl