Files
brevetcard/Dockerfile

17 lines
354 B
Docker
Raw Normal View History

FROM texlive/texlive:latest
# Install additional packages if needed
RUN apt-get update && apt-get install -y \
make \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /workspace
# Copy project files
COPY brevetkarte.tex .
COPY cyclist-logo.png .
# Default command
CMD ["pdflatex", "-interaction=nonstopmode", "brevetkarte.tex"]