File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 24
24
FICD_DM_VOLUME_GROUP : " fcci-vg"
25
25
command :
26
26
- ./.buildkite/setup_al2.sh
27
- - docker run --rm -v $PWD:/mnt debian:buster -slim rm -rf /mnt/tools/image-builder/rootfs
27
+ - docker run --rm -v $PWD:/mnt debian:bullseye -slim rm -rf /mnt/tools/image-builder/rootfs
28
28
29
29
- wait
30
30
Original file line number Diff line number Diff line change 23
23
EXTRAGOARGS : " -race"
24
24
command :
25
25
- make test-images
26
- - docker run --rm -v $PWD:/mnt debian:buster -slim rm -rf /mnt/tools/image-builder/rootfs
26
+ - docker run --rm -v $PWD:/mnt debian:bullseye -slim rm -rf /mnt/tools/image-builder/rootfs
27
27
- sudo install -d -o root -g buildkite-agent -m 775 "/local/artifacts/$BUILDKITE_BUILD_NUMBER"
28
28
- cp tools/image-builder/rootfs.img "/local/artifacts/$BUILDKITE_BUILD_NUMBER/"
29
29
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ SUBMODULES=_submodules
28
28
UID: =$(shell id -u)
29
29
GID: =$(shell id -g)
30
30
31
- FIRECRACKER_CONTAINERD_BUILDER_IMAGE? =golang:1.17-buster
31
+ FIRECRACKER_CONTAINERD_BUILDER_IMAGE? =golang:1.17-bullseye
32
32
export FIRECRACKER_CONTAINERD_TEST_IMAGE? =localhost/firecracker-containerd-test
33
33
export GO_CACHE_VOLUME_NAME? =gocache
34
34
Original file line number Diff line number Diff line change 1
1
# syntax=docker/dockerfile:experimental
2
2
# Test image that starts up containerd and the devmapper snapshotter. The default CMD will drop to a bash shell. Overrides
3
3
# to CMD will be provided appended to /bin/bash -c
4
- FROM golang:1.17-stretch
4
+ FROM golang:1.17-bullseye
5
5
ENV PATH="/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin:/usr/local/go/bin"
6
6
ENV INSTALLROOT="/usr/local"
7
7
ENV DEBIAN_FRONTEND="noninteractive"
@@ -20,6 +20,7 @@ RUN apt-get update && apt-get install --yes --no-install-recommends \
20
20
libdevmapper-dev \
21
21
libseccomp-dev \
22
22
tcpdump \
23
+ iproute2 \
23
24
rng-tools # used for rngtest
24
25
25
26
RUN mkdir -p \
Original file line number Diff line number Diff line change 11
11
# express or implied. See the License for the specific language governing
12
12
# permissions and limitations under the License.
13
13
14
- FROM debian:buster -slim
14
+ FROM debian:bullseye -slim
15
15
16
16
RUN apt-get update && \
17
17
DEBIAN_FRONTEND=noninteractive apt-get -y install \
You can’t perform that action at this time.
0 commit comments