This commit is contained in:
2025-10-06 14:11:51 +03:00
parent c7b283d0ef
commit 94b95d132b
6 changed files with 56 additions and 16 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM alpine:latest
RUN apk add --no-cache \
pandoc \
groff \
ghostscript \
bash
WORKDIR /app
COPY create-pdf.sh ./
RUN chmod +x create-pdf.sh
COPY CV.md ./
CMD ["./create-pdf.sh"]