Add basic GitHub Action

This commit is contained in:
2023-12-20 10:29:05 +01:00
commit f7863d079e
4 changed files with 78 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM alpine:3.19
RUN apk add --no-cache --upgrade \
texlive-full
ADD build.sh /
RUN chmod +x /compile.sh
ENTRYPOINT ["/compile.sh"]