Skip to content

Commit 6d01ff7

Browse files
committed
Add ppa:pypy/ppa repository in Dockerfiles of judgehost and gitlabci
1 parent 55881c8 commit 6d01ff7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docker-gitlabci/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ RUN useradd -d /nonexistent -g nogroup -s /bin/false domjudge-run-0
77
RUN useradd -d /nonexistent -g nogroup -s /bin/false domjudge-run-1
88
RUN groupadd domjudge-run
99

10-
RUN apt-get update && apt-get install -y \
10+
RUN apt-add-repository ppa:pypy/ppa -y \
11+
apt-get update && apt-get -y install \
1112
acl make zip unzip apache2-utils bsdmainutils libcurl4-gnutls-dev \
1213
libjsoncpp-dev libmagic-dev autoconf automake bats sudo debootstrap procps \
1314
gcc g++ default-jre-headless default-jdk-headless ghc fp-compiler libcgroup-dev \

docker/judgehost/Dockerfile.chroot

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
FROM ubuntu:20.04
1+
FROM ubuntu:24.04
22
ENV DEBIAN_FRONTEND=noninteractive
3-
RUN apt-get update && apt-get -y install \
3+
RUN apt-add-repository ppa:pypy/ppa -y \
4+
apt-get update && apt-get -y install \
45
ca-certificates default-jre-headless pypy3 locales \
56
&& rm -rf /var/lib/apt/lists/*
67

0 commit comments

Comments
 (0)