From 72e6bfa1d64550730a327627db92f1d369fa68ca Mon Sep 17 00:00:00 2001 From: Anuraag Agrawal Date: Tue, 25 Oct 2022 11:03:49 +0900 Subject: [PATCH] Include reflection fix for XML in TinyGo build (#60) --- buildtools/tinygo/wasi-libc.Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/buildtools/tinygo/wasi-libc.Dockerfile b/buildtools/tinygo/wasi-libc.Dockerfile index dafef6ea663da..77ba338d1ea9d 100644 --- a/buildtools/tinygo/wasi-libc.Dockerfile +++ b/buildtools/tinygo/wasi-libc.Dockerfile @@ -5,9 +5,11 @@ FROM ghcr.io/corazawaf/coraza-proxy-wasm/buildtools-wasi-sdk:main RUN apt-get install -y git +# Includes # https://github.com/tinygo-org/tinygo/pull/3245 -RUN git clone https://github.com/anuraaga/tinygo --branch customgc +# https://github.com/tinygo-org/tinygo/pull/3252 +RUN git clone https://github.com/anuraaga/tinygo --branch coraza-fork WORKDIR /tinygo -RUN git fetch origin && git reset --hard 8e62159e36217975bdf27cfb4271c2ad2d252441 +RUN git fetch origin && git reset --hard f20979998e57fc5128fbca823b3897b66467abe1 RUN git submodule update --init lib/wasi-libc RUN make wasi-libc