-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
28 lines (28 loc) · 813 Bytes
/
Dockerfile
File metadata and controls
28 lines (28 loc) · 813 Bytes
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
FROM alpine:edge
ENV IMAGE_VERSION=20251026
ENV CMAKE_BUILD_PARALLEL_LEVEL=2
ENV CXX="ccache clang++"
ENV CC="ccache clang"
RUN apk -U upgrade
RUN <<EOR
apk add \
bash python3 perl git tar rsync zip gzip \
build-base gcovr ccache \
cmake make \
meson ninja-build pkgconf py3-pkgconfig \
doxygen graphviz plantuml \
clang clang-extra-tools clang-analyzer compiler-rt \
llvm llvm-dev llvm-gtest llvm-linker-tools \
llvm-static llvm-test-utils \
boost boost-dev \
benchmark benchmark-dev \
zlib-dev zstd-dev \
curl-dev openssl-dev \
libedit libedit-dev \
libxml2 libxml2-dev \
nodejs npm openssl
EOR
RUN passwd -d -l root
RUN adduser -D -s /bin/bash git
WORKDIR /home/git
CMD [ "/bin/bash" ]