Update Python with IPYNB (Working)

This commit is contained in:
2023-10-04 04:38:27 +00:00
parent 51ff7d1272
commit 9e753f60df
9 changed files with 1577 additions and 0 deletions
+9
View File
@@ -12,6 +12,15 @@ RUN apt-get update \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ="America/New_York"
RUN apt-get update \
&& apt-get install -y \
texlive-xetex \
texlive-fonts-recommended \
texlive-plain-generic \
pandoc
ARG USER=coder
RUN useradd --groups sudo --no-create-home --shell /bin/bash ${USER} \
&& echo "${USER} ALL=(ALL) NOPASSWD:ALL" >/etc/sudoers.d/${USER} \