From 414f55ce191d3435a5e8a5745054fcf4dd0a83e4 Mon Sep 17 00:00:00 2001 From: Sohom Datta Date: Tue, 5 Nov 2024 05:35:32 -0500 Subject: [PATCH] Fix errors in build (#118) We will need to copy over the post-processor directory any way due to idiosyncrasies of docker builder --- .github/build-postprocessors/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/build-postprocessors/Dockerfile b/.github/build-postprocessors/Dockerfile index b7ee59e..a2585c3 100644 --- a/.github/build-postprocessors/Dockerfile +++ b/.github/build-postprocessors/Dockerfile @@ -1,13 +1,13 @@ FROM golang:1.22 AS build -# COPY post-processor /post-processor # This is for testing locally +COPY post-processor /post-processor RUN apt update RUN apt install -y --no-install-recommends git python3 python3-pip curl make RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y ENV PATH="${PATH}:/root/.cargo/bin" -# WORKDIR / # This is for testing locally +WORKDIR / RUN make -C post-processor FROM ubuntu:latest -COPY --from=build /post-processor/artifacts /artifacts \ No newline at end of file +COPY --from=build /post-processor/artifacts /artifacts