You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# docker build -t test -f Dockerfile.openwrt ..FROM alpine:3.17ARG NAME=openwrt-imagebuilder-22.03.3-armvirt-64.Linux-x86_64ARG SDK_URL=https://mirrors.cloud.tencent.com/openwrt/releases/22.03.3/targets/armvirt/64/${NAME}.tar.xzARG SDK_PATH=/sdk/${NAME}RUN sed -i 's|dl-cdn.alpinelinux.org|mirrors.cloud.tencent.com|g' /etc/apk/repositoriesRUN apk add --no-cache curlRUN mkdir /sdkRUN curl -o /tmp/${NAME} ${SDK_URL} \&& tar xf /tmp/${NAME} -C /sdk \&& rm /tmp/${NAME}RUN apk add --no-cache perl make git bash gawk gcc g++ ncurses-devWORKDIR ${SDK_PATH}RUN ./scripts/feeds update baseRUN ./scripts/feeds install libpcapRUN mkdir ./package/switch-lan-playCOPY ./docker/Makefile.openwrt ${SDK_PATH}/package/switch-lan-play/MakefileCOPY . ${SDK_PATH}/package/switch-lan-play/switch-lan-playRUN make defconfig# RUN make package/switch-lan-play/compile
and build error
STEP 11/16: RUN ./scripts/feeds update base
Unable to open feeds configuration at ./scripts/feeds line 91.
Error: error building at STEP "RUN ./scripts/feeds update base": error while running runtime: exit status 2
The text was updated successfully, but these errors were encountered:
Dockerfile.openwrt content:
and build error
The text was updated successfully, but these errors were encountered: