From 0301e0553272803e57944ee2ae1899968a0c1aa5 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Mon, 25 Jul 2022 11:29:22 -0600 Subject: [PATCH] docs/docker-compose: Use Ubuntu Focal for testnode I'm seeing ceph-cm-ansible failures w/ Jammy because of python-apt vs. python3-apt. We'll revisit this soon. Signed-off-by: Zack Cerza --- docs/docker-compose/testnode/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docker-compose/testnode/Dockerfile b/docs/docker-compose/testnode/Dockerfile index f09ba09dc..016d32117 100644 --- a/docs/docker-compose/testnode/Dockerfile +++ b/docs/docker-compose/testnode/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:latest +FROM ubuntu:focal ENV DEBIAN_FRONTEND=noninteractive RUN apt update && \ apt -y install \ @@ -23,4 +23,4 @@ RUN \ chmod 700 /home/ubuntu/.ssh && \ chown -R ubuntu /home/ubuntu EXPOSE 22 -ENTRYPOINT /testnode_start.sh \ No newline at end of file +ENTRYPOINT /testnode_start.sh -- 2.47.3