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 .