Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-lancini committed Sep 12, 2023
1 parent 7f8f68f commit f2b9af5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/pandoc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ FROM pandoc/extra:3.1.1
LABEL org.opencontainers.image.source = "https://github.com/marco-lancini/utils"

# Install Latex packages
COPY packages.txt /packages.txt
COPY docker/pandoc/packages.txt /packages.txt
RUN sed -e 's/ *#.*$//' -e '/^ *$/d' /packages.txt | \
xargs tlmgr install \
&& rm -f /packages.txt

# Install extra requirements
COPY requirements.txt /requirements.txt
COPY docker/pandoc/requirements.txt /requirements.txt
RUN pip3 install --no-cache-dir -r /requirements.txt \
&& rm -f /requirements.txt

Expand Down

0 comments on commit f2b9af5

Please sign in to comment.