Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docker-gitlabci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,14 @@ RUN wget $GITHUBDICTIONARY -O $CODESPELLDICTLOCATION
# Do some extra setup
RUN mkdir -p /run/php \
&& rm /etc/php/*/fpm/pool.d/www.conf

RUN du -sh /*

# Cache the chroot
RUN wget https://github.com/DOMjudge/domjudge/archive/refs/heads/main.zip \
&& unzip main.zip && cd domjudge-main/misc-tools && make configure \
&& cd misc-tools && make dj_make_chroot \
&& ./dj_make_chroot \
&& cd ../.. && rm -rf domjudge-main

RUN du -sh /*
Loading