File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 24
24
FROM alpine:3.21.0 AS build-env
25
25
26
26
RUN apk --no-cache add \
27
- bash=5.2.26 -r0 \
28
- cmake=3.29.3 -r0 \
29
- gcc=13 .2.1_git20240309-r0 \
30
- g++=13 .2.1_git20240309-r0 \
31
- git=2.45.2 -r0 \
27
+ bash=5.2.37 -r0 \
28
+ cmake=3.31.1 -r0 \
29
+ gcc=14 .2.0-r4 \
30
+ g++=14 .2.0-r4 \
31
+ git=2.47.1 -r0 \
32
32
make=4.4.1-r2 \
33
- python3=3.12.7-r0 \
33
+ python3=3.12.7-r1 \
34
34
patch=2.7.6-r10 \
35
- linux-headers=6.6-r0 && \
35
+ linux-headers=6.6-r1 && \
36
36
mkdir /install
37
37
38
38
ARG BUILD_TYPE=Debug
@@ -47,7 +47,7 @@ RUN cmake /src/Sample-Server/.github/ \
47
47
48
48
FROM alpine:3.21.0 AS runtime
49
49
RUN apk --no-cache add \
50
- libstdc++=13 .2.1_git20240309-r0
50
+ libstdc++=14 .2.0-r4
51
51
COPY --from=build-env /install/bin /app
52
52
COPY ./configuration.docker.json /configuration.json
53
53
You can’t perform that action at this time.
0 commit comments