File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @cartesi/sdk " : patch
3+ ---
4+
5+ bump squashfs-tools to 4.7.2
Original file line number Diff line number Diff line change @@ -26,7 +26,12 @@ apt-get install -y --no-install-recommends \
2626 automake \
2727 build-essential \
2828 libarchive-dev \
29- libtool
29+ libtool \
30+ liblz4-dev \
31+ liblzma-dev \
32+ liblzo2-dev \
33+ libzstd-dev \
34+ zlib1g-dev
3035rm -rf /var/lib/apt/lists/*
3136EOF
3237
@@ -57,6 +62,17 @@ RUN <<EOF
5762make
5863EOF
5964
65+ # ###############################################################################
66+ # build msquashfs-tools
67+ FROM builder AS squashfs-tools
68+ ARG SQUASHFS_TOOLS_VERSION
69+ WORKDIR /usr/local/src/squashfs-tools
70+ ADD https://github.com/plougher/squashfs-tools.git#v${SQUASHFS_TOOLS_VERSION}:squashfs-tools .
71+ RUN <<EOF
72+ make
73+ ./mksquashfs -version
74+ EOF
75+
6076# ###############################################################################
6177# go migrate db cli installer
6278FROM base AS go-migrate
@@ -270,7 +286,6 @@ apt-get install -y --no-install-recommends \
270286 libslirp0 \
271287 locales \
272288 lua5.4 \
273- squashfs-tools \
274289 xxd \
275290 xz-utils
276291rm -rf /var/lib/apt/lists/*
@@ -356,6 +371,7 @@ COPY eth_load /usr/local/bin
356371COPY entrypoint.sh /usr/local/bin/
357372COPY --from=foundry /usr/local/bin/anvil /usr/local/bin/
358373COPY --from=foundry /usr/local/bin/cast /usr/local/bin/
374+ COPY --from=squashfs-tools /usr/local/src/squashfs-tools/mksquashfs /usr/local/bin/
359375
360376WORKDIR /mnt
361377ENTRYPOINT ["/usr/local/bin/entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ target "default" {
2323 NODE_VERSION = " 22.15.1"
2424 NVM_VERSION = " 977563e97ddc66facf3a8e31c6cff01d236f09bd" # 0.40.3
2525 POSTGRES_BASE_IMAGE = " docker.io/library/postgres:17-trixie@sha256:8a56bef4c60bef3d26193cb9d810fce93def8fd0c459f4a9b14240fbd7559a1d"
26+ SQUASHFS_TOOLS_VERSION = " 4.7.2"
2627 SU_EXEC_VERSION = " 0.2"
2728 XGENEXT2_VERSION = " 1.5.6"
2829 }
You can’t perform that action at this time.
0 commit comments