mirror of
https://github.com/async-profiler/async-profiler.git
synced 2026-06-15 18:46:34 +00:00
9 lines
261 B
Docker
9 lines
261 B
Docker
FROM public.ecr.aws/amazonlinux/amazonlinux:2023
|
|
|
|
RUN yum update -y && \
|
|
yum install -y binutils findutils make tar gcc-c++ util-linux && \
|
|
yum clean all && \
|
|
rm -rf /var/cache/yum && \
|
|
python3 -m ensurepip && \
|
|
python3 -m pip install gcovr
|