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