Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Daethyra committed Jun 8, 2023
1 parent fc285bc commit 61531b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ WORKDIR /app
# Copy the requirements file into the container
COPY requirements.txt .

# Install the dependencies
RUN pip install --no-cache-dir -r requirements.txt

# Install Pandoc
# Apt-Get update / Install Pandoc
RUN apt-get update && \
apt-get install -y pandoc texlive texlive-latex-extra && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# Install the dependencies
RUN pip install --no-cache-dir -r requirements.txt

# Copy the rest of the application code
COPY . .

Expand Down

0 comments on commit 61531b8

Please sign in to comment.