From e8088ccf39d93a5586e5e692fd38fadb7cb38896 Mon Sep 17 00:00:00 2001 From: jayy04 <103467857+jayy04@users.noreply.github.com> Date: Mon, 19 Jun 2023 10:20:04 -0400 Subject: [PATCH] test/e2e: Fix Docker image build (#984) (#10) Signed-off-by: Thane Thomson Co-authored-by: Thane Thomson --- test/e2e/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/docker/Dockerfile b/test/e2e/docker/Dockerfile index cff113638f..2ffe56d0b9 100644 --- a/test/e2e/docker/Dockerfile +++ b/test/e2e/docker/Dockerfile @@ -1,7 +1,7 @@ # We need to build in a Linux environment to support C libraries, e.g. RocksDB. # We use Debian instead of Alpine, so that we can use binary database packages # instead of spending time compiling them. -FROM golang:1.20 +FROM golang:1.20-bullseye RUN apt-get -qq update -y && apt-get -qq upgrade -y >/dev/null RUN apt-get -qq install -y libleveldb-dev librocksdb-dev >/dev/null