Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions scripts/build-runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ runtime="$(file -L /bin/bash)"

if [[ "$runtime" =~ 80386 ]]; then
architecture=i686
elif [[ "$runtime" =~ i386 ]]; then
architecture=i686
elif [[ "$runtime" =~ aarch64 ]]; then
architecture=aarch64
elif [[ "$runtime" =~ EABI5 ]]; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.20
FROM alpine:3.21

# includes dependencies from https://git.alpinelinux.org/aports/tree/main/fuse3/APKBUILD
RUN apk add --no-cache \
Expand Down
Loading