Skip to content

Commit e444d9e

Browse files
chore: use :latest instead of :py312 (#9460)
1 parent b14512e commit e444d9e

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/tests-az.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
echo "Starting Containers..."
6363
sudo docker network create dtnet
6464
sudo docker run -d --name db --network=dtnet ghcr.io/ietf-tools/datatracker-db:latest &
65-
sudo docker run -d --name app --network=dtnet ghcr.io/ietf-tools/datatracker-app-base:py312 sleep infinity &
65+
sudo docker run -d --name app --network=dtnet ghcr.io/ietf-tools/datatracker-app-base:latest sleep infinity &
6666
wait
6767
6868
echo "Cloning datatracker repo..."

dev/deploy-to-container/cli.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ async function main () {
8585

8686
// Pull latest Datatracker Base image
8787
console.info('Pulling latest Datatracker base docker image...')
88-
const appImagePullStream = await dock.pull('ghcr.io/ietf-tools/datatracker-app-base:py312')
88+
const appImagePullStream = await dock.pull('ghcr.io/ietf-tools/datatracker-app-base:latest')
8989
await new Promise((resolve, reject) => {
9090
dock.modem.followProgress(appImagePullStream, (err, res) => err ? reject(err) : resolve(res))
9191
})
@@ -214,7 +214,7 @@ async function main () {
214214
const celeryContainers = {}
215215
for (const conConf of conConfs) {
216216
celeryContainers[conConf.name] = await dock.createContainer({
217-
Image: 'ghcr.io/ietf-tools/datatracker-app-base:py312',
217+
Image: 'ghcr.io/ietf-tools/datatracker-app-base:latest',
218218
name: `dt-${conConf.name}-${branch}`,
219219
Hostname: `dt-${conConf.name}-${branch}`,
220220
Env: [
@@ -244,7 +244,7 @@ async function main () {
244244
// Create Datatracker container
245245
console.info(`Creating Datatracker docker container... [dt-app-${branch}]`)
246246
const appContainer = await dock.createContainer({
247-
Image: 'ghcr.io/ietf-tools/datatracker-app-base:py312',
247+
Image: 'ghcr.io/ietf-tools/datatracker-app-base:latest',
248248
name: `dt-app-${branch}`,
249249
Hostname: `dt-app-${branch}`,
250250
Env: [

dev/diff/cli.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ async function main () {
567567
{
568568
title: 'Pulling latest Datatracker base docker image...',
569569
task: async (subctx, subtask) => {
570-
const appImagePullStream = await dock.pull('ghcr.io/ietf-tools/datatracker-app-base:py312')
570+
const appImagePullStream = await dock.pull('ghcr.io/ietf-tools/datatracker-app-base:latest')
571571
await new Promise((resolve, reject) => {
572572
dock.modem.followProgress(appImagePullStream, (err, res) => err ? reject(err) : resolve(res))
573573
})
@@ -648,7 +648,7 @@ async function main () {
648648
title: 'Creating source Datatracker docker container...',
649649
task: async (subctx, subtask) => {
650650
containers.appSource = await dock.createContainer({
651-
Image: 'ghcr.io/ietf-tools/datatracker-app-base:py312',
651+
Image: 'ghcr.io/ietf-tools/datatracker-app-base:latest',
652652
name: 'dt-diff-app-source',
653653
Tty: true,
654654
Hostname: 'appsource',
@@ -664,7 +664,7 @@ async function main () {
664664
title: 'Creating target Datatracker docker container...',
665665
task: async (subctx, subtask) => {
666666
containers.appTarget = await dock.createContainer({
667-
Image: 'ghcr.io/ietf-tools/datatracker-app-base:py312',
667+
Image: 'ghcr.io/ietf-tools/datatracker-app-base:latest',
668668
name: 'dt-diff-app-target',
669669
Tty: true,
670670
Hostname: 'apptarget',

dev/tests/debug.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Simply type "exit" + ENTER to exit and shutdown this test environment.
1010

1111
echo "Fetching latest images..."
12-
docker pull ghcr.io/ietf-tools/datatracker-app-base:py312
12+
docker pull ghcr.io/ietf-tools/datatracker-app-base:latest
1313
docker pull ghcr.io/ietf-tools/datatracker-db:latest
1414
echo "Starting containers..."
1515
docker compose -f docker-compose.debug.yml -p dtdebug --compatibility up -d

dev/tests/docker-compose.debug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: '3.8'
55

66
services:
77
app:
8-
image: ghcr.io/ietf-tools/datatracker-app-base:py312
8+
image: ghcr.io/ietf-tools/datatracker-app-base:latest
99
command: -f /dev/null
1010
working_dir: /__w/datatracker/datatracker
1111
entrypoint: tail

docker/app.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/ietf-tools/datatracker-app-base:py312
1+
FROM ghcr.io/ietf-tools/datatracker-app-base:latest
22
LABEL maintainer="IETF Tools Team <[email protected]>"
33

44
ENV DEBIAN_FRONTEND=noninteractive

docker/celery.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/ietf-tools/datatracker-app-base:py312
1+
FROM ghcr.io/ietf-tools/datatracker-app-base:latest
22
LABEL maintainer="IETF Tools Team <[email protected]>"
33

44
ENV DEBIAN_FRONTEND=noninteractive

0 commit comments

Comments
 (0)