8 lines
173 B
Docker
8 lines
173 B
Docker
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
|