Skip to content

Commit

Permalink
Add ppa:pypy/ppa repository in Dockerfiles of judgehost and gitlabci
Browse files Browse the repository at this point in the history
  • Loading branch information
mpsijm committed Oct 5, 2024
1 parent 55881c8 commit 6d01ff7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docker-gitlabci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ RUN useradd -d /nonexistent -g nogroup -s /bin/false domjudge-run-0
RUN useradd -d /nonexistent -g nogroup -s /bin/false domjudge-run-1
RUN groupadd domjudge-run

RUN apt-get update && apt-get install -y \
RUN apt-add-repository ppa:pypy/ppa -y \
apt-get update && apt-get -y install \
acl make zip unzip apache2-utils bsdmainutils libcurl4-gnutls-dev \
libjsoncpp-dev libmagic-dev autoconf automake bats sudo debootstrap procps \
gcc g++ default-jre-headless default-jdk-headless ghc fp-compiler libcgroup-dev \
Expand Down
5 changes: 3 additions & 2 deletions docker/judgehost/Dockerfile.chroot
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
FROM ubuntu:20.04
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get -y install \
RUN apt-add-repository ppa:pypy/ppa -y \
apt-get update && apt-get -y install \
ca-certificates default-jre-headless pypy3 locales \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 6d01ff7

Please sign in to comment.