Files
labs/utilities/pdf_make/Dockerfile
2025-06-13 21:25:56 -07:00

9 lines
217 B
Docker

# Use the official Pandoc image as base
FROM pandoc/latex:latest
WORKDIR /app
# IMPORTANT: Copy your script into the container
COPY generate_reports.sh /app/generate_reports.sh
RUN chmod +x /app/generate_reports.sh