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
6 changes: 3 additions & 3 deletions .docker/ubuntu-22.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Base image
FROM ubuntu:22.04@sha256:59ccd419c0dc0edf9e3bff1a3b2b073ea15a2ce4bc45ce7c989278b225b09af3 AS base
FROM ubuntu:22.04@sha256:09506232a8004baa32c47d68f1e5c307d648fdd59f5e7eaa42aaf87914100db3 AS base

LABEL org.opencontainers.image.source=https://github.com/microsoft/msquic

Expand Down Expand Up @@ -40,7 +40,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
&& rm -rf /var/lib/apt/lists/*

RUN gem install fpm
RUN wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
RUN wget -q https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
sudo dpkg -i packages-microsoft-prod.deb && \
sudo add-apt-repository universe && \
sudo apt-get update -y && \
Expand All @@ -55,7 +55,7 @@ RUN git config --global safe.directory '*'
FROM base AS xdp-build

RUN apt-get update -y && apt-get install -y \
&& echo "deb [arch=amd64] http://cz.archive.ubuntu.com/ubuntu noble main" > /etc/apt/sources.list.d/xdp.list \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how did cz ever get here? wow...

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Contribution from .Net?

&& echo "deb [arch=amd64] http://us.archive.ubuntu.com/ubuntu noble main" > /etc/apt/sources.list.d/xdp.list \
&& apt-get update -y && apt-get install --no-install-recommends -y -t noble \
libnl-3-dev \
libnl-genl-3-dev \
Expand Down
2 changes: 1 addition & 1 deletion .docker/ubuntu-24.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN gem install fpm
RUN wget -q https://launchpad.net/ubuntu/+archive/primary/+files/libicu72_72.1-3ubuntu3_amd64.deb \
&& dpkg -i ./libicu72_72.1-3ubuntu3_amd64.deb \
&& rm ./libicu72_72.1-3ubuntu3_amd64.deb \
&& wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
&& wget -q https://packages.microsoft.com/config/ubuntu/24.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
sudo dpkg -i packages-microsoft-prod.deb && \
sudo add-apt-repository universe && \
sudo apt-get update -y && \
Expand Down
10 changes: 1 addition & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,9 @@ updates:
- package-ecosystem: "docker"
directories:
- "/.docker/ubuntu-22.04"
schedule:
interval: "monthly"
ignore:
- dependency-name: "ubuntu"
versions: ["24.x", ">= 23.0.0", "23.x"]

- package-ecosystem: "docker"
directories:
- "/.docker/ubuntu-24.04"
schedule:
interval: "monthly"
ignore:
- dependency-name: "ubuntu"
versions: ["25.x", ">= 25.0.0"]
update-types: ["version-update:semver-major", "version-update:semver-minor"]
Loading