diff --git a/.github/Dockerfile b/.github/Dockerfile new file mode 100644 index 0000000..f43b691 --- /dev/null +++ b/.github/Dockerfile @@ -0,0 +1,10 @@ +FROM debian:12-slim + +RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/* + +ARG TARGETARCH +COPY binaries/Linux-GNU-${TARGETARCH}-scrolls /bin/scrolls +RUN chmod +x /bin/scrolls +RUN ln -s /bin/scrolls /scrolls + +ENTRYPOINT ["scrolls"] \ No newline at end of file