Skip to content

Commit 6a28a55

Browse files
committed
Change to ubuntu:latest and clean up
1 parent fdb4d6b commit 6a28a55

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ on:
77
branches:
88
- master
99
schedule:
10-
# Tuesday at 10. One day after the CircleCI scheduled upddate
11-
# See: https://github.com/CircleCI-Public/cimg-base/blob/main/.circleci/schedule.json
12-
- cron: '0 10 * * 2'
10+
- cron: '0 0 * * 0'
1311
workflow_dispatch:
1412

1513
jobs:

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1.6
22

33
# Intermediate image used to prune cruft from JDKs and squash them all.
4-
FROM ubuntu:24.04 AS all-jdk
4+
FROM ubuntu:latest AS all-jdk
55

66
COPY --from=eclipse-temurin:8-jdk-jammy /opt/java/openjdk /usr/lib/jvm/8
77
COPY --from=eclipse-temurin:11-jdk-jammy /opt/java/openjdk /usr/lib/jvm/11
@@ -75,8 +75,8 @@ COPY --from=all-jdk /usr/lib/jvm/17 /usr/lib/jvm/17
7575
COPY --from=all-jdk /usr/lib/jvm/21 /usr/lib/jvm/21
7676

7777
# Base image with minimunm requirenents to build the project.
78-
# Based on CircleCI Base Image with Ubuntu 22.04.3 LTS, present in most runners.
79-
FROM ubuntu:24.04 AS base
78+
# Based on the latest Ubuntu LTS image.
79+
FROM ubuntu:latest AS base
8080

8181
# https://docs.github.com/en/packages/learn-github-packages/connecting-a-repository-to-a-package
8282
LABEL org.opencontainers.image.source=https://github.com/DataDog/dd-trace-java-docker-build

0 commit comments

Comments
 (0)