Skip to content

Commit

Permalink
add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega committed Dec 15, 2023
1 parent 5bd1724 commit 7416dda
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit 7416dda

Please sign in to comment.