From 646cdfd63561129ec7ed144cb079703228ac7d71 Mon Sep 17 00:00:00 2001 From: Reza Behzadan Date: Thu, 25 Jan 2024 06:33:42 +0330 Subject: [PATCH] Remove unnecessary texlive packages from Dockerfile --- Dockerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index dd84174..d3022d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,12 @@ FROM archlinux:base +# Update and install necessary packages RUN pacman -Sy --noconfirm curl reflector && \ - reflector --latest 5 --sort rate --save /etc/pacman.d/mirrorlist -RUN sed -i '/\[options\]/a XferCommand = /usr/bin/curl -C - --fail --retry 3 --retry-delay 3 -o %o %u' /etc/pacman.conf -RUN pacman -Syu --noconfirm --needed texlive-basic texlive-bibtexextra texlive-bin texlive-fontsextra texlive-fontsrecommended texlive-formatsextra texlive-games texlive-humanities texlive-langgerman texlive-latex texlive-latexextra texlive-latexrecommended texlive-mathscience texlive-music texlive-pictures texlive-plaingeneric texlive-pstricks texlive-publishers -RUN pacman -Syu --noconfirm --needed python-fastapi uvicorn python-python-multipart -RUN yes | pacman -Scc + reflector --latest 5 --sort rate --save /etc/pacman.d/mirrorlist && \ + sed -i '/\[options\]/a XferCommand = /usr/bin/curl -C - --fail --retry 3 --retry-delay 3 -o %o %u' /etc/pacman.conf && \ + pacman -Syu --noconfirm --needed texlive-bin texlive-core texlive-latexextra texlive-fontsrecommended texlive-langenglish texlive-langgerman && \ + pacman -Syu --noconfirm --needed python-fastapi uvicorn python-python-multipart && \ + yes | pacman -Scc WORKDIR /app COPY main.py .