2022-06-01 10:55:51 +02:00
|
|
|
FROM ubuntu
|
2022-06-02 14:47:56 +02:00
|
|
|
RUN sed -i -e 's/^APT/# APT/' -e 's/^DPkg/# DPkg/' /etc/apt/apt.conf.d/docker-clean; \
|
|
|
|
export DEBIAN_FRONTEND=noninteractive; \
|
2022-05-31 16:10:28 +02:00
|
|
|
apt update; \
|
2022-06-02 15:23:15 +02:00
|
|
|
apt install -y texlive-full jq curl wget git; \
|
2022-06-02 15:18:55 +02:00
|
|
|
cd /tmp; \
|
|
|
|
wget https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-1-amd64.deb; \
|
2022-06-12 18:23:51 +02:00
|
|
|
dpkg -i pandoc-2.18-1-amd64.deb; \
|
|
|
|
curl -sL https://deb.nodesource.com/setup_16.x -o nodesource_setup.sh; \
|
|
|
|
bash nodesource_setup.sh; \
|
|
|
|
apt install -y nodejs;
|
2022-06-12 22:57:01 +02:00
|
|
|
RUN apt install -y cppcheck;
|