Dockerfile 479 B

1234567891011
  1. # Dockerfile for running python and making PDFs
  2. # It's silly to use this when we're not using Rust, but it saves us from
  3. # having to download a different image later.
  4. FROM rust:1.93.0
  5. WORKDIR /home/analysis/
  6. RUN apt update -y && apt upgrade -y
  7. RUN apt install -y curl python3 python3-numpy python3-pandas texlive texlive-fonts-extra texlive-publishers
  8. ADD belarus-2020-2021 /home/analysis/belarus-2020-2021
  9. ADD parsing-results /home/analysis/parsing-results
  10. ENV SHELL=/bin/bash