-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
41 lines (35 loc) · 1.37 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get clean && \
apt-get update && \
apt-get install -y automake \
g++ \
git \
libboost-all-dev \
libgmp-dev \
libgmp10 \
libgmpxx4ldbl \
mono-mcs \
nodejs \
npm \
openjdk-21-jdk \
pypy3 \
python3-minimal \
python3-pip \
python3-plastex \
python3-yaml \
rustc \
sudo \
swi-prolog \
texlive-fonts-recommended \
texlive-lang-cyrillic \
texlive-latex-extra \
texlive-plain-generic \
tidy \
vim
RUN curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh
RUN pip3 install git+https://github.com/tagl/problemtools --break-system-packages
COPY languages.yaml /usr/local/lib/python3.12/dist-packages/problemtools/config/languages.yaml
COPY entrypoint.sh /entrypoint.sh
COPY check_verifyproblem_output.py /check_verifyproblem_output.py
ENTRYPOINT ["/entrypoint.sh"]