diff --git a/Dockerfile.squashfs-tools b/Dockerfile.squashfs-tools index 9693f80..d597e7d 100644 --- a/Dockerfile.squashfs-tools +++ b/Dockerfile.squashfs-tools @@ -5,7 +5,7 @@ WORKDIR /usr/src # build dependencies RUN apk update && apk add build-base git zlib-dev zlib-static zstd-dev zstd-static lz4-dev lz4-static -# check out xen sources +# check out squashfs-tools sources ENV SQUASHFS_TOOLS_VERSION=${SQUASHFS_TOOLS_VERSION} RUN git clone https://github.com/plougher/squashfs-tools && cd squashfs-tools && git checkout squashfs-tools-$SQUASHFS_TOOLS_VERSION WORKDIR /usr/src/squashfs-tools/squashfs-tools @@ -13,6 +13,6 @@ ENV CFLAGS="-O2 -Wall -static" ENV LDFLAGS="-static" RUN make -j`nproc` && make install INSTALL_DIR=/usr/obj/usr/bin -## copy final oxenstored into a scratch image +## copy final squashfs-tools into a scratch image FROM scratch AS final COPY --from=build /usr/obj/ /