From b6603442d512790733c1735529d97b1d2e85eef3 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Wed, 6 Nov 2024 17:59:35 -0700 Subject: [PATCH] Do not set nodoc --- custom/testing/ubuntu-22.04.Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/custom/testing/ubuntu-22.04.Dockerfile b/custom/testing/ubuntu-22.04.Dockerfile index 3ea19e3..568d507 100644 --- a/custom/testing/ubuntu-22.04.Dockerfile +++ b/custom/testing/ubuntu-22.04.Dockerfile @@ -1,10 +1,11 @@ FROM ubuntu:22.04 -COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/01_nodoc - RUN apt update -y \ && echo 'tzdata tzdata/Areas select America' | debconf-set-selections \ && echo 'tzdata tzdata/Zones/America select Phoenix' | debconf-set-selections \ && DEBIAN_FRONTEND="noninteractive" apt install -y \ python3 python3-venv python3-pip unzip sudo tree \ - wget systemd + wget systemd \ + +RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM" > /log +COPY /log /log