diff --git a/dockerfiles/Dockerfile.alpine b/dockerfiles/Dockerfile.alpine index a0e99dc..7fc51d8 100644 --- a/dockerfiles/Dockerfile.alpine +++ b/dockerfiles/Dockerfile.alpine @@ -1,5 +1,4 @@ FROM alpine:3.19 RUN apk update && apk upgrade -RUN apk add texlive -RUN apk add texmf-dist-pictures +RUN apk add make texlive texmf-dist-pictures diff --git a/dockerfiles/Dockerfile.archlinux b/dockerfiles/Dockerfile.archlinux index 4e7abd3..08369fd 100644 --- a/dockerfiles/Dockerfile.archlinux +++ b/dockerfiles/Dockerfile.archlinux @@ -3,7 +3,6 @@ FROM archlinux:latest RUN pacman-key --init RUN pacman-key --populate archlinux RUN pacman -Sy archlinux-keyring --noconfirm && pacman -Su --noconfirm -# RUN pacman-key --refresh-keys RUN pacman -Syu --noconfirm -RUN pacman -S perl texlive texlive-binextra texlive-pictures --noconfirm +RUN pacman -S make perl texlive texlive-binextra texlive-pictures --noconfirm diff --git a/dockerfiles/Dockerfile.ubuntu b/dockerfiles/Dockerfile.ubuntu index 1307b99..8def11a 100644 --- a/dockerfiles/Dockerfile.ubuntu +++ b/dockerfiles/Dockerfile.ubuntu @@ -3,5 +3,4 @@ FROM ubuntu:22.04 ARG DEBIAN_FRONTEND=noninteractive RUN apt update -y && apt upgrade -y -RUN apt install neovim git -y -RUN apt install texlive latexmk texlive-pictures -y +RUN apt install make texlive latexmk texlive-pictures -y