Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devops/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ extends:
jobs:
- job: build_internal
pool:
name: JEG-azurelinux-x64-release
name: JEG-ubuntu22.04-x64-release
os: linux
strategy:
matrix: ${{ parameters.jobs }}
Expand Down Expand Up @@ -161,7 +161,7 @@ extends:
- job: build_public
dependsOn: wait_for_validation
pool:
name: JEG-azurelinux-x64-release
name: JEG-ubuntu22.04-x64-release
os: linux
strategy:
matrix: ${{ parameters.jobs }}
Expand Down
3 changes: 2 additions & 1 deletion docker/test-only/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ LABEL "Support"="Microsoft OpenJDK Support <openjdk-support@microsoft.com>"

ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get -qq update && \
RUN sed -i 's|http://archive.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g; s|http://security.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g' /etc/apt/sources.list && \
apt-get -qq update && \
apt-get -qq upgrade && \
apt-get -qq install --no-install-recommends tzdata ca-certificates fontconfig locales apt-transport-https wget binutils && \
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \
Expand Down
1 change: 1 addition & 0 deletions docker/ubuntu/Dockerfile.msopenjdk-11-jdk
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ARG ms_package="msopenjdk-11 jaz"
ARG PKGS="tzdata ca-certificates fontconfig locales apt-transport-https wget"

RUN DEBIAN_FRONTEND=noninteractive && \
sed -i 's|http://archive.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g; s|http://security.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g' /etc/apt/sources.list && \
apt-get -qq update && \
apt-get -qq upgrade && \
apt-get -qq install --no-install-recommends ${PKGS} && \
Expand Down
1 change: 1 addition & 0 deletions docker/ubuntu/Dockerfile.msopenjdk-17-jdk
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ARG ms_package="msopenjdk-17 jaz"
ARG PKGS="tzdata ca-certificates fontconfig locales apt-transport-https wget binutils"

RUN DEBIAN_FRONTEND=noninteractive && \
sed -i 's|http://archive.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g; s|http://security.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g' /etc/apt/sources.list && \
apt-get -qq update && \
apt-get -qq upgrade && \
apt-get -qq install --no-install-recommends ${PKGS} && \
Expand Down
1 change: 1 addition & 0 deletions docker/ubuntu/Dockerfile.msopenjdk-21-jdk
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ARG ms_package="msopenjdk-21 jaz"
ARG PKGS="tzdata ca-certificates fontconfig locales apt-transport-https wget binutils"

RUN DEBIAN_FRONTEND=noninteractive && \
sed -i 's|http://archive.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g; s|http://security.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g' /etc/apt/sources.list && \
apt-get -qq update && \
apt-get -qq upgrade && \
apt-get -qq install --no-install-recommends ${PKGS} && \
Expand Down
1 change: 1 addition & 0 deletions docker/ubuntu/Dockerfile.msopenjdk-25-jdk
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ ARG ms_package="msopenjdk-25 jaz"
ARG PKGS="tzdata ca-certificates fontconfig locales apt-transport-https wget binutils"

RUN DEBIAN_FRONTEND=noninteractive && \
sed -i 's|http://archive.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g; s|http://security.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g' /etc/apt/sources.list && \
apt-get -qq update && \
apt-get -qq upgrade && \
apt-get -qq install --no-install-recommends ${PKGS} && \
Expand Down
Loading