mirror of
https://github.com/async-profiler/async-profiler.git
synced 2026-06-15 18:46:34 +00:00
33 lines
1.3 KiB
Docker
33 lines
1.3 KiB
Docker
# Image for building async-profiler release packages
|
|
|
|
# Stage 0: download and build musl
|
|
FROM public.ecr.aws/debian/debian:10-slim
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
sudo libicu-dev patchelf curl make g++ openjdk-11-jdk-headless gcovr && \
|
|
rm -rf /var/cache/apt /var/lib/apt/lists/*
|
|
|
|
ARG musl_src=musl-1.2.5
|
|
ARG musl_sha256=a9a118bbe84d8764da0ea0d28b3ab3fae8477fc7e4085d90102b8596fc7c75e4
|
|
|
|
ADD https://musl.libc.org/releases/${musl_src}.tar.gz /
|
|
RUN echo ${musl_sha256} ${musl_src}.tar.gz | sha256sum -c
|
|
|
|
RUN ["/bin/bash", "-c", "\
|
|
tar xfz ${musl_src}.tar.gz && \
|
|
cd /${musl_src} && \
|
|
./configure --disable-shared --prefix=/usr/local/musl && \
|
|
make -j`nproc` && make install && make clean && \
|
|
ln -s /usr/include/$(arch)-linux-gnu/asm /usr/include/{asm-generic,linux} /usr/local/musl/include/"]
|
|
|
|
# Stage 1: install build tools + copy musl toolchain from the previous step
|
|
FROM public.ecr.aws/debian/debian:10-slim
|
|
|
|
# The following command should be exactly the same as at stage 0 to benefit from caching.
|
|
# libicu-dev is needed for the github actions runner
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
sudo libicu-dev patchelf curl make g++ openjdk-11-jdk-headless gcovr && \
|
|
rm -rf /var/cache/apt /var/lib/apt/lists/*
|
|
|
|
COPY --from=0 /usr/local/musl /usr/local/musl
|