Skip to content

Commit ff6c62c

Browse files
committed
Make steps explicit
1 parent 6585b46 commit ff6c62c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docker-gitlabci/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ RUN mkdir -p /run/php \
6767
RUN du -sh /* || true
6868

6969
# Cache the chroot
70-
RUN pwd && wget https://github.com/DOMjudge/domjudge/archive/refs/heads/main.zip
71-
RUN pwd && unzip main.zip
72-
RUN pwd && cd domjudge-main && make configure
73-
RUN pwd && cd misc-tools && make dj_make_chroot
74-
RUN pwd && ./dj_make_chroot
75-
RUN pwd && cd ../.. && rm -rf domjudge-main
70+
RUN cd / && wget https://github.com/DOMjudge/domjudge/archive/refs/heads/main.zip
71+
RUN cd / && unzip main.zip
72+
RUN cd /domjudge-main && make configure
73+
RUN cd /domjudge-main/misc-tools && make dj_make_chroot
74+
RUN cd /domjudge-main/misc-tools && ./dj_make_chroot
75+
RUN rm -rf /domjudge-main
7676

7777
RUN du -sh /* || true

0 commit comments

Comments
 (0)