Update 'Dockerfile'
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
steph 2022-06-02 15:18:55 +02:00
parent d2f8e8b3f0
commit e355a3ca98

View File

@ -2,4 +2,7 @@ FROM ubuntu
RUN sed -i -e 's/^APT/# APT/' -e 's/^DPkg/# DPkg/' /etc/apt/apt.conf.d/docker-clean; \
export DEBIAN_FRONTEND=noninteractive; \
apt update; \
apt install -y pandoc texlive-full jq curl
apt install -y texlive-full jq curl wget; \
cd /tmp; \
wget https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-1-amd64.deb; \
dpkg -i pandoc-2.18-1-amd64.deb;