11 lines
454 B
Docker
Executable File
11 lines
454 B
Docker
Executable File
# syntax=docker/dockerfile:1
|
|
FROM ubuntu:24.04
|
|
ENV DEBIAN_FRONTEND=noninteractive PYTHONUNBUFFERED=1 LC_ALL=C.UTF-8 LANG=C.UTF-8
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates curl git make emacs-nox python3 python3-pip python3-matplotlib \
|
|
latexmk biber texlive-full && rm -rf /var/lib/apt/lists/*
|
|
RUN useradd -m -s /bin/bash builder || true
|
|
WORKDIR /work
|
|
USER builder
|
|
CMD ["bash", "-lc", "make VENUE=arxiv"]
|