diff --git a/scripts/Dockerfile b/scripts/Dockerfile new file mode 100644 index 0000000..c371c43 --- /dev/null +++ b/scripts/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu as build +RUN apt-get update +RUN apt-get install -y curl git +RUN curl https://get.extism.org/cli | sh -s -- -y -o / +RUN /extism -h # smoke test the binary is installed here + +FROM scratch +WORKDIR / +COPY --from=build /extism .