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-06-13 16:10:07 +02:00
|
|
|
apt update; apt install -y curl; \
|
|
|
|
curl -sL https://deb.nodesource.com/setup_16.x | bash; \
|
|
|
|
apt install -y texlive-full jq wget git cppcheck nodejs; \
|
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-13 16:10:07 +02:00
|
|
|
dpkg -i pandoc-2.18-1-amd64.deb;
|