Skip to content

Commit ffa3f61

Browse files
committed
feat: Use CircleCI current instead of edge
According to CircleCI CI, edge is only tagged when active development whereas current is still tagged on a monthly basis. This should avoid relying on outdated image when no development occurs.
1 parent 6433ead commit ffa3f61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 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 cimg/base:edge-22.04 AS all-jdk
4+
FROM cimg/base:current-22.04 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
@@ -59,7 +59,7 @@ COPY --from=all-jdk /usr/lib/jvm/21 /usr/lib/jvm/21
5959

6060
# Base image with minimunm requirenents to build the project.
6161
# Based on CircleCI Base Image with Ubuntu 22.04.3 LTS, present in most runners.
62-
FROM cimg/base:edge-22.04 AS base
62+
FROM cimg/base:current-22.04 AS base
6363

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

0 commit comments

Comments
 (0)