From 013fc5b7af83e6b2eb22777f26626328b5dcf546 Mon Sep 17 00:00:00 2001 From: Omar Rodriguez Date: Sun, 29 Mar 2026 22:58:40 -0700 Subject: [PATCH] Update for Ubuntu Jammy --- helix-p4d/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/helix-p4d/Dockerfile b/helix-p4d/Dockerfile index ce6b520..6487672 100644 --- a/helix-p4d/Dockerfile +++ b/helix-p4d/Dockerfile @@ -2,7 +2,7 @@ # Docker configuration for P4D # -------------------------------------------------------------------------------- -FROM ubuntu:focal +FROM ubuntu:jammy LABEL vendor="Sourcegraph" LABEL maintainer="Joe Chen (joe@sourcegraph.com)" @@ -11,7 +11,7 @@ LABEL maintainer="Joe Chen (joe@sourcegraph.com)" RUN apt-get update && \ apt-get install -y wget gnupg2 && \ wget -qO - https://package.perforce.com/perforce.pubkey | apt-key add - && \ - echo "deb http://package.perforce.com/apt/ubuntu focal release" > /etc/apt/sources.list.d/perforce.list && \ + echo "deb http://package.perforce.com/apt/ubuntu jammy release" > /etc/apt/sources.list.d/perforce.list && \ apt-get update # -------------------------------------------------------------------------------- @@ -19,9 +19,9 @@ RUN apt-get update && \ # -------------------------------------------------------------------------------- # Create perforce user and install Perforce Server -# Do in-page search over https://package.perforce.com/apt/ubuntu/dists/focal/release/binary-amd64/Packages -# for both "Package: helix-p4d" and "Package: helix-swarm-triggers". -RUN apt-get update && apt-get install -y helix-p4d=2024.1-2625008~focal helix-swarm-triggers=2024.3-2628402~focal +# Do in-page search over https://package.perforce.com/apt/ubuntu/dists/jammy/release/binary-amd64/Packages +# for both "Package: p4-server" and "Package: helix-swarm-triggers". +RUN apt-get update && apt-get install -y p4-server=2025.2-2907753~jammy helix-swarm-triggers=2026.1-2914779~jammy # Add external files COPY files/restore.sh /usr/local/bin/restore.sh COPY files/setup.sh /usr/local/bin/setup.sh