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