This repository was archived by the owner on Aug 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
60 lines (57 loc) · 1.85 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
FROM debian:buster-slim AS environment
ARG DEV=no
RUN if [ ${DEV} = "yes" ]; then echo '\
deb http://deb.debian.org/debian sid main\n\
deb-src http://deb.debian.org/debian sid main'; \
else echo '\
deb http://deb.debian.org/debian bullseye main\n\
deb-src http://deb.debian.org/debian bullseye main'; \
fi \
>> /etc/apt/sources.list
RUN if [ ${DEV} = "yes" ]; then echo '\
Package: *\n\
Pin: release n=sid\n\
Pin-Priority: 1'; \
else echo '\
Package: *\n\
Pin: release n=bullseye\n\
Pin-Priority: 1'; \
fi \
> /etc/apt/preferences.d/99pinning
FROM environment AS build-system
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y build-essential fakeroot devscripts
WORKDIR /usr/local/src
RUN apt-get source python3.8
RUN mv python3.8*/ python-source
WORKDIR python-source
ADD distutils-dep.diff .
RUN patch -p1 < distutils-dep.diff
ARG NAME
ARG EMAIL
ARG CHANGE
RUN dch --bpo "$CHANGE"
FROM build-system AS native
RUN mk-build-deps --install --tool 'apt-get -y --no-install-recommends'
RUN debuild -b -uc -us
RUN mkdir debs && mv ../*.deb debs
CMD mkdir -p artifacts && cp -r debs/. artifacts
FROM build-system AS crossbuild
ARG CROSSBUILD
RUN [ ! -z "$CROSSBUILD" ]
RUN dpkg --add-architecture $CROSSBUILD
RUN apt-get update
COPY --from=native /usr/local/src/python-source/debs native-debs
RUN cd native-debs && apt-get install -y ./libpython3.8-minimal*.deb \
./libpython3.8-stdlib*.deb \
./libpython3.8_*.deb \
./python3.8-minimal*.deb \
./python3.8_*.deb
ADD crossbuild-dep.diff .
RUN patch -p1 < crossbuild-dep.diff
# For some reason mk-build-deps cannot install directly when cross-compiling
RUN mk-build-deps --arch $CROSSBUILD --host-arch $CROSSBUILD
RUN apt-get install -y ./python3.8-cross-build-deps*.deb
RUN DEB_BUILD_OPTIONS='nocheck nobench' debuild -b -uc -us -a$CROSSBUILD
RUN mkdir debs && mv ../*.deb debs
CMD mkdir -p artifacts && cp -r debs/. artifacts