Skip to content

Commit 26d57bb

Browse files
committed
⚙️ Add alpine,threaded variant
1 parent 1490fec commit 26d57bb

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

alpine,threaded/DevelPatchPerl.patch

Whitespace-only changes.

alpine,threaded/Dockerfile

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
FROM alpine:3.12
2+
LABEL maintainer="Peter Martini <[email protected]>, Zak B. Elep <[email protected]>"
3+
4+
COPY *.patch /usr/src/perl/
5+
WORKDIR /usr/src/perl
6+
7+
RUN set -x \
8+
&& apk add --no-cache --virtual .build-deps curl procps tar build-base make xz \
9+
&& curl -SL https://www.cpan.org/src/5.0/perl-5.32.0.tar.xz -o perl-5.32.0.tar.xz \
10+
&& echo '6f436b447cf56d22464f980fac1916e707a040e96d52172984c5d184c09b859b *perl-5.32.0.tar.xz' | sha256sum -c - \
11+
&& tar --strip-components=1 -xaf perl-5.32.0.tar.xz -C /usr/src/perl \
12+
&& rm perl-5.32.0.tar.xz \
13+
&& cat *.patch | patch -p1 \
14+
&& ./Configure -Duse64bitall -Dusethreads -Duseshrplib -des \
15+
&& make -j$(nproc) \
16+
&& TEST_JOBS=$(nproc) make test_harness \
17+
&& make install \
18+
&& cd /usr/src \
19+
&& curl -LO https://www.cpan.org/authors/id/M/MI/MIYAGAWA/App-cpanminus-1.7044.tar.gz \
20+
&& echo '9b60767fe40752ef7a9d3f13f19060a63389a5c23acc3e9827e19b75500f81f3 *App-cpanminus-1.7044.tar.gz' | sha256sum -c - \
21+
&& tar -xzf App-cpanminus-1.7044.tar.gz && cd App-cpanminus-1.7044 && perl bin/cpanm . && cd /root \
22+
&& runDeps="$( \
23+
scanelf --needed --nobanner --recursive /usr/local \
24+
| awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' \
25+
| sort -u \
26+
| xargs -r apk info --installed \
27+
| sort -u \
28+
)" \
29+
&& apk add --virtual .perl-rundeps $runDeps make \
30+
&& apk del .build-deps \
31+
&& rm -fr ./cpanm /root/.cpanm /usr/src/perl /usr/src/App-cpanminus-1.7044* /tmp/*
32+
33+
WORKDIR /root
34+
35+
CMD ["perl5.22.1","-de0"]

0 commit comments

Comments
 (0)