Skip to content

Commit d2a2e97

Browse files
committed
README: fix Build Your Own IB example
OpenWrt switched to using ZSTD compressed tarballs a while ago, so using the current example DOWNLOAD_FILE arg will result in the built container not being able to find any files since that tarball is missing. So, update to also look for .tar.zst as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
1 parent 9c2aa71 commit d2a2e97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ If you wan to create your own container you can use the `Dockerfile`. You can se
149149
```shell
150150
docker build \
151151
--build-arg TARGET=x86/64 \
152-
--build-arg DOWNLOAD_FILE="imagebuilder-.*x86_64.tar.xz" \
152+
--build-arg DOWNLOAD_FILE="imagebuilder-.*x86_64.tar.[xz|zst]" \
153153
--build-arg FILE_HOST=downloads.openwrt.org \
154154
--build-arg VERSION_PATH=snapshots \
155155
-t openwrt/x86_64 .

0 commit comments

Comments
 (0)