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