Skip to content

Commit 37962fd

Browse files
committed
Try out building with alpine image
Adapted from @ncopa's example in Perl#23 .
1 parent 0b4a8d7 commit 37962fd

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

alpine/DevelPatchPerl.patch

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/patchlevel.h b/patchlevel.h
2+
index bd56612..3d5f668 100644
3+
--- a/patchlevel.h
4+
+++ b/patchlevel.h
5+
@@ -137,6 +137,7 @@ static const char * const local_patches[] = {
6+
,"uncommitted-changes"
7+
#endif
8+
PERL_GIT_UNPUSHED_COMMITS /* do not remove this line */
9+
+ ,"Devel::PatchPerl 1.38"
10+
,NULL
11+
};
12+

alpine/Dockerfile

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
FROM alpine:latest
2+
MAINTAINER Peter Martini <[email protected]>
3+
4+
RUN mkdir -p /usr/src/perl
5+
COPY *.patch /usr/src/perl/
6+
WORKDIR /usr/src/perl
7+
8+
ENV PERL_CPANM_OPT --no-wget
9+
10+
RUN set -x \
11+
&& NPROC=$(getconf _NPROCESSORS_ONLN) \
12+
&& apk add --no-cache curl procps tar build-base \
13+
&& curl -SL https://cpan.metacpan.org/authors/id/S/SH/SHAY/perl-5.22.1.tar.bz2 -o perl-5.22.1.tar.bz2 \
14+
&& echo '29f9b320b0299577a3e1d02e9e8ef8f26f160332 *perl-5.22.1.tar.bz2' | sha1sum -c - \
15+
&& tar --strip-components=1 -xjf perl-5.22.1.tar.bz2 -C /usr/src/perl \
16+
&& rm perl-5.22.1.tar.bz2 \
17+
&& cat *.patch | patch -p1 \
18+
&& ./Configure -Duse64bitall -Duseshrplib -des \
19+
&& sed -i -e "s,\(d_setlocale=\)'define',\1'undef',g" ./config.sh \
20+
&& ./Configure -S \
21+
&& install -m0644 ./config.sh ./xconfig.sh \
22+
&& make -j$NPROC \
23+
&& TEST_JOBS=$NPROC make test_harness \
24+
&& make install \
25+
&& cd /usr/src \
26+
&& curl -LO https://raw.githubusercontent.com/miyagawa/cpanminus/master/cpanm \
27+
&& chmod +x cpanm \
28+
&& ./cpanm App::cpanminus \
29+
&& rm -fr ./cpanm /root/.cpanm /usr/src/perl /tmp/*
30+
31+
WORKDIR /root
32+
33+
CMD ["perl5.22.1","-de0"]

0 commit comments

Comments
 (0)