From 10336fadff156c4f805f8c181386d67fe1c1c4f1 Mon Sep 17 00:00:00 2001 From: Charles Short Date: Fri, 9 Feb 2024 13:30:58 +0000 Subject: [PATCH] Update Dockerfile Install additional dependencies: - gir1.2-ostree-1.0 - dosfstools - rsync - xfsprogs - python3-gi - python3-yaml - python3-systemd - dosfstools Story: 2010867 Task: 48556 Test Plan PASSED Build Docker container. Change-Id: I6a6fbaa3c8ee7dbd4c8e9fbcceb2022bc0807313 Signed-off-by: Charles Short --- docker/Dockerfile | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 96ce550..d3d5c72 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,16 +6,24 @@ FROM debian:bullseye RUN apt-get update && \ apt-get install -y \ - mmdebstrap \ - debos \ - ostree \ - python3 \ - python3-apt \ - python3-click \ - python3-pip \ - python3-pbr \ - python3-rich \ - reprepro + mmdebstrap \ + debos \ + ostree \ + python3 \ + python3-apt \ + python3-click \ + python3-pip \ + python3-pbr \ + python3-rich \ + gir1.2-ostree-1.0 \ + dosfstools \ + rsync \ + xfsprogs \ + python3-gi \ + python3-yaml \ + python3-systemd \ + dosfstools \ + reprepro ADD assets/pip.conf /etc/pip.conf