Skip to content

Commit 2f2c22c

Browse files
committed
CI: Install wget package for Alpine Linux
Recently, we have been transitioning from using curl to wget for downloading files from remote hosts. However, the version of wget provided by Alpine Linux is actually a Busybox implementation, which lacks many features found in the full wget package. Error messages: #15 [linux/amd64 base_gcc 5/6] RUN make ENABLE_SDL=0 #15 0.207 Check the file build/.config for configured items. #15 0.360 Fetching prebuilt executables from "rv32emu-prebuilt" ... #15 0.361 wget: unrecognized option: show-progress This commit attempts to install wget package instead.
1 parent 10bc401 commit 2f2c22c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM alpine:3.19 as base_gcc
22

3-
RUN apk add --update alpine-sdk git curl
3+
RUN apk add --update alpine-sdk git wget
44

55
# copy in the source code
66
WORKDIR /home/root/rv32emu

0 commit comments

Comments
 (0)