2025-06-13 21:24:32 -07:00
|
|
|
# Use the official Pandoc image as base
|
|
|
|
|
FROM pandoc/latex:latest
|
2025-06-07 14:04:07 -07:00
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
# IMPORTANT: Copy your script into the container
|
|
|
|
|
COPY generate_reports.sh /app/generate_reports.sh
|
|
|
|
|
RUN chmod +x /app/generate_reports.sh
|