From 9600a468a0dae60af9ed8b6857db7ff7f535065e Mon Sep 17 00:00:00 2001 From: cosmicpsyop Date: Fri, 8 Dec 2023 00:18:12 -0800 Subject: [PATCH 1/2] ensure the builddir is not tainted from a previous host build --- ubuntu.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ubuntu.Dockerfile b/ubuntu.Dockerfile index 15ccff0..4b70cad 100644 --- a/ubuntu.Dockerfile +++ b/ubuntu.Dockerfile @@ -8,6 +8,7 @@ RUN apt update && apt install -y --no-install-recommends \ libzstd-dev COPY . . +RUN make clean RUN git submodule update --init RUN make setup-golpe RUN make -j4 From f3dc0963b05a7c882ae30740883f5988a318257f Mon Sep 17 00:00:00 2001 From: cosmicpsyop Date: Fri, 8 Dec 2023 15:03:47 -0800 Subject: [PATCH 2/2] move clean --- ubuntu.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu.Dockerfile b/ubuntu.Dockerfile index 4b70cad..d89a6b9 100644 --- a/ubuntu.Dockerfile +++ b/ubuntu.Dockerfile @@ -8,9 +8,9 @@ RUN apt update && apt install -y --no-install-recommends \ libzstd-dev COPY . . -RUN make clean RUN git submodule update --init RUN make setup-golpe +RUN make clean RUN make -j4 FROM ubuntu:jammy as runner