Skip to content

Commit ddce5a8

Browse files
committed
downgrade to bookworm since it still comes with mkfs.ext4
Signed-off-by: Justin Alvarez <[email protected]>
1 parent 067a0f5 commit ddce5a8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ SUBMODULES=_submodules
2929
UID:=$(shell id -u)
3030
GID:=$(shell id -g)
3131

32-
FIRECRACKER_CONTAINERD_BUILDER_IMAGE?=golang:1.24-trixie
32+
FIRECRACKER_CONTAINERD_BUILDER_IMAGE?=golang:1.24-bookworm
3333
export FIRECRACKER_CONTAINERD_TEST_IMAGE?=localhost/firecracker-containerd-test
3434
export GO_CACHE_VOLUME_NAME?=gocache
3535

tools/docker/Dockerfile.integ-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:experimental
22
# Test image that starts up containerd and the devmapper snapshotter. The default CMD will drop to a bash shell. Overrides
33
# to CMD will be provided appended to /bin/bash -c
4-
FROM public.ecr.aws/docker/library/golang:1.24-trixie
4+
FROM public.ecr.aws/docker/library/golang:1.24-bookworm
55
ENV PATH="/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin:/usr/local/go/bin"
66
ENV INSTALLROOT="/usr/local"
77
ENV DEBIAN_FRONTEND="noninteractive"

tools/docker/Dockerfile.proto-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM public.ecr.aws/docker/library/golang:1.24-trixie
14+
FROM public.ecr.aws/docker/library/golang:1.24-bookworm
1515

1616
RUN apt-get update && apt-get install --yes --no-install-recommends \
1717
libprotobuf-dev=3.21.12-11 \

tools/docker/Dockerfile.runc-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM public.ecr.aws/docker/library/golang:1.24-trixie
14+
FROM public.ecr.aws/docker/library/golang:1.24-bookworm
1515

1616
RUN apt-get update && \
1717
DEBIAN_FRONTEND=noninteractive apt-get -y install libseccomp-dev pkg-config e2fsprogs

tools/docker/Dockerfile.stargz-builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
# express or implied. See the License for the specific language governing
1212
# permissions and limitations under the License.
1313

14-
FROM public.ecr.aws/docker/library/golang:1.24-trixie
14+
FROM public.ecr.aws/docker/library/golang:1.24-bookworm

tools/docker/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ EOF
6666

6767
touch ${FICD_CONTAINERD_OUTFILE}
6868
chmod a+rw ${FICD_CONTAINERD_OUTFILE}
69-
PATH="/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin:/usr/local/go/bin" /usr/local/bin/containerd --log-level debug &>> ${FICD_CONTAINERD_OUTFILE} &
69+
/usr/local/bin/containerd --log-level debug &>> ${FICD_CONTAINERD_OUTFILE} &
7070

7171
/usr/local/bin/http-address-resolver &>> ${FICD_LOG_DIR}/http-address-resolver.out &
7272
/usr/local/bin/demux-snapshotter &>> ${FICD_LOG_DIR}/demux-snapshotter.out &

0 commit comments

Comments
 (0)