Skip to content

Commit

Permalink
Docker: fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
anishshobithps committed Jan 11, 2025
1 parent 86e28ff commit 88133fb
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ FROM ubuntu:22.04
# Avoid prompts from apt
ENV DEBIAN_FRONTEND=noninteractive

# Install dependencies
# Install required packages
RUN apt-get update && apt-get install -y \
texlive-latex-base \
texlive-fonts-recommended \
texlive-fonts-extra \
texlive-latex-extra \
texlive-full \
latexmk \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -19,5 +16,4 @@ WORKDIR /latex
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

# Set the entrypoint
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 88133fb

Please sign in to comment.