Docker Image Builder

Has anyone been able to successfully build an OpenWRT image from the docker hub/repo lately?
I’ve continually getting the error:

make: *** No rule to make target 'image'. Stop.

I can build 24.10-4 and prior but nothing more recently, both MAIN.Snapshot nor 24.10.Snapshot.

The error is the same across various recent docker images and the two profiles I use, “friendlyarm_nanopi-r5s”, "ubnt_unifi-6-lite"

Could the “docker run…..” syntax have changed for SNAPSHOTS?

I just used Docker on my MacBook Pro to build a snapshot for my MT6000 yesterday, so I know it works for me. Here's the run command I used:

docker run --rm -v ~/Downloads/:/builder/bin -it openwrt/imagebuilder:mediatek-filogic-SNAPSHOT

Then I run setup.sh in the container and paste in my make command:

make image PROFILE="glinet_gl-mt6000" PACKAGES="luci kmod-usb-net kmod-usb-net-cdc-ether kmod-usb-net-ipheth usbmuxd libimobiledevice usbutils luci-proto-wireguard luci-app-sqm"

That’s all I do.

Thanks for your response. I’ve never jumped into the container to issue commands for the build as I’ve only parsed the command during the docker run.

Your reply did remind there was something about “setup.sh” around which I eventually found here:

Which had this warning that pretty much explains my problem. For snapshots you need to run setup.sh within container.