Remove unnecessary texlive packages from Dockerfile
This commit is contained in:
parent
d119391e2c
commit
646cdfd635
11
Dockerfile
11
Dockerfile
@ -1,11 +1,12 @@
|
|||||||
FROM archlinux:base
|
FROM archlinux:base
|
||||||
|
|
||||||
|
# Update and install necessary packages
|
||||||
RUN pacman -Sy --noconfirm curl reflector && \
|
RUN pacman -Sy --noconfirm curl reflector && \
|
||||||
reflector --latest 5 --sort rate --save /etc/pacman.d/mirrorlist
|
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
|
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
|
pacman -Syu --noconfirm --needed texlive-bin texlive-core texlive-latexextra texlive-fontsrecommended texlive-langenglish texlive-langgerman && \
|
||||||
RUN pacman -Syu --noconfirm --needed python-fastapi uvicorn python-python-multipart
|
pacman -Syu --noconfirm --needed python-fastapi uvicorn python-python-multipart && \
|
||||||
RUN yes | pacman -Scc
|
yes | pacman -Scc
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY main.py .
|
COPY main.py .
|
||||||
|
Loading…
Reference in New Issue
Block a user