Skip to content

Commit e018c5e

Browse files
authored
Update Containerfile
1 parent fddb34d commit e018c5e

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

AxxSolder_firmware/Containerfile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#Inspired by https://github.com/jasonyang-ee/STM32-Dockerfile/tree/main
2-
FROM alpine:3.20.3
2+
FROM docker.io/alpine:3.21.3
33

44
RUN set -eux; \
55
apk add --no-cache --virtual build-dependencies \
6-
build-base=0.5-r3 \
7-
gcc=13.2.1_git20240309-r0 \
8-
gcc-arm-none-eabi=14.1.0-r0 \
9-
cmake=3.29.3-r0 \
6+
build-base=0.5-r3 \
7+
gcc=14.2.0-r4 \
8+
gcc-arm-none-eabi=14.2.0-r0 \
9+
cmake=3.31.1-r0 \
1010
newlib=4.4.0.20231231-r0 \
1111
;
1212

@@ -16,5 +16,4 @@ COPY . .
1616

1717
RUN set -eux; \
1818
cmake -S . -B build; \
19-
cmake --build build -j$(nproc); \
20-
ls -al build;
19+
cmake --build build -j$(nproc);

0 commit comments

Comments
 (0)