Dockerfile 415 B

12345678910111213
  1. FROM sharelatex/sharelatex:5.5.7
  2. # Apply security updates to base image
  3. RUN apt update && apt install -y linux-libc-dev \
  4. && unattended-upgrade --verbose --no-minimal-upgrade-steps \
  5. && apt purge -y imagemagick \
  6. && apt autoremove -y \
  7. && apt install -y poppler-utils \
  8. && rm -rf /var/lib/apt/lists/*
  9. # Update converter
  10. COPY issue_31527.patch .
  11. RUN patch -p0 < issue_31527.patch && rm issue_31527.patch