more docker stuff

This commit is contained in:
2025-01-09 16:24:09 -06:00
parent 9df463bd32
commit adf312df78
4 changed files with 10 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
# Use a base image with Pandoc and LaTeX
FROM pandoc/latex:latest
FROM ubuntu:24.04
# Set working directory
WORKDIR /app
@@ -8,6 +9,7 @@ WORKDIR /app
RUN apt-get update && \
apt-get install -y \
bash \
pandoc \
git \
&& rm -rf /var/lib/apt/lists/*