Files
labs/utilities/pdf_make/Dockerfile

9 lines
197 B
Docker
Raw Normal View History

2025-06-07 14:04:07 -07:00
# pdf_make/Dockerfile
FROM pandoc/latex:2.19
WORKDIR /app
# IMPORTANT: Copy your script into the container
COPY generate_reports.sh /app/generate_reports.sh
RUN chmod +x /app/generate_reports.sh