Skip to content

Commit eec43ae

Browse files
committed
⚙️ Regenerate all Dockerfiles
This renames most of the current directories to the new builds scheme, as well as adds new directories for the `slim` variants.
1 parent 3784c17 commit eec43ae

File tree

92 files changed

+7463
-167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+7463
-167
lines changed

5.008.009-64bit,threaded/Dockerfile 5.008.009-main,threaded/Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,24 @@ LABEL maintainer="Peter Martini <[email protected]>, Zak B. Elep <zakame@c
44
COPY *.patch /usr/src/perl/
55
WORKDIR /usr/src/perl
66

7-
RUN curl -SL https://www.cpan.org/src/5.0/perl-5.8.9.tar.bz2 -o perl-5.8.9.tar.bz2 \
7+
RUN true \
8+
&& curl -SL https://www.cpan.org/src/5.0/perl-5.8.9.tar.bz2 -o perl-5.8.9.tar.bz2 \
89
&& echo '1097fbcd48ceccb2bc735d119c9db399a02a8ab9f7dc53e29e47e6a8d0d72e79 *perl-5.8.9.tar.bz2' | sha256sum -c - \
910
&& tar --strip-components=1 -xaf perl-5.8.9.tar.bz2 -C /usr/src/perl \
1011
&& rm perl-5.8.9.tar.bz2 \
1112
&& cat *.patch | patch -p1 \
1213
&& gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" \
1314
&& archBits="$(dpkg-architecture --query DEB_BUILD_ARCH_BITS)" \
1415
&& archFlag="$([ "$archBits" = '64' ] && echo '-Duse64bitall' || echo '-Duse64bitint')" \
15-
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Dusethreads -Duseshrplib -Dvendorprefix=/usr/local -A ccflags=-fwrapv -des \
16+
&& ./Configure -Darchname="$gnuArch" "$archFlag" -Duseshrplib -Dvendorprefix=/usr/local -Dusethreads -A ccflags=-fwrapv -des \
1617
&& make -j$(nproc) \
1718
&& make test_harness \
1819
&& make install \
1920
&& cd /usr/src \
2021
&& curl -LO http://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7044.tar.gz \
2122
&& echo '9b60767fe40752ef7a9d3f13f19060a63389a5c23acc3e9827e19b75500f81f3 *App-cpanminus-1.7044.tar.gz' | sha256sum -c - \
2223
&& tar -xzf App-cpanminus-1.7044.tar.gz && cd App-cpanminus-1.7044 && perl bin/cpanm . && cd /root \
24+
&& true \
2325
&& rm -fr ./cpanm /root/.cpanm /usr/src/perl /usr/src/App-cpanminus-1.7044* /tmp/*
2426

2527
WORKDIR /root
File renamed without changes.

5.008.009-64bit/Dockerfile 5.008.009-main/Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ LABEL maintainer="Peter Martini <[email protected]>, Zak B. Elep <zakame@c
44
COPY *.patch /usr/src/perl/
55
WORKDIR /usr/src/perl
66

7-
RUN curl -SL https://www.cpan.org/src/5.0/perl-5.8.9.tar.bz2 -o perl-5.8.9.tar.bz2 \
7+
RUN true \
8+
&& curl -SL https://www.cpan.org/src/5.0/perl-5.8.9.tar.bz2 -o perl-5.8.9.tar.bz2 \
89
&& echo '1097fbcd48ceccb2bc735d119c9db399a02a8ab9f7dc53e29e47e6a8d0d72e79 *perl-5.8.9.tar.bz2' | sha256sum -c - \
910
&& tar --strip-components=1 -xaf perl-5.8.9.tar.bz2 -C /usr/src/perl \
1011
&& rm perl-5.8.9.tar.bz2 \
@@ -20,6 +21,7 @@ RUN curl -SL https://www.cpan.org/src/5.0/perl-5.8.9.tar.bz2 -o perl-5.8.9.tar.b
2021
&& curl -LO http://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7044.tar.gz \
2122
&& echo '9b60767fe40752ef7a9d3f13f19060a63389a5c23acc3e9827e19b75500f81f3 *App-cpanminus-1.7044.tar.gz' | sha256sum -c - \
2223
&& tar -xzf App-cpanminus-1.7044.tar.gz && cd App-cpanminus-1.7044 && perl bin/cpanm . && cd /root \
24+
&& true \
2325
&& rm -fr ./cpanm /root/.cpanm /usr/src/perl /usr/src/App-cpanminus-1.7044* /tmp/*
2426

2527
WORKDIR /root

0 commit comments

Comments
 (0)