From 41cc09a10662baad8c4e56b45cd96823b6e051de Mon Sep 17 00:00:00 2001 From: James Petersen Date: Mon, 9 Sep 2024 18:49:36 -0600 Subject: [PATCH] chore(squashfs-tools): update comments Signed-off-by: James Petersen --- Dockerfile.squashfs-tools | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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/ /