9 lines
217 B
Docker
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
|