Upgrade CI images to ubuntu:jammy-20240405

Closes gh-40410
This commit is contained in:
Scott Frederick
2024-04-17 16:40:09 -05:00
parent acb9427ffd
commit bc5777d0cc
4 changed files with 6 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
FROM ubuntu:jammy-20240227 as prepare
FROM ubuntu:jammy-20240405 as prepare
COPY downloads/* /opt/download/
RUN mkdir -p /opt/jdk && \
cd /opt/jdk && \
tar xzf /opt/download/* --strip-components=1
FROM ubuntu:jammy-20240227
FROM ubuntu:jammy-20240405
COPY --from=prepare /opt/jdk /opt/jdk
ENV JAVA_HOME /opt/jdk
ENV PATH $JAVA_HOME/bin:$PATH