From 0df97b610357b7979af552aefe1f2a32c53a02cb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 18:20:06 +0300 Subject: [PATCH] Update ubuntu 22.04 -> 24.04 (#85) Co-authored-by: Fedor Batonogov --- Dockerfile-py3-windows | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile-py3-windows b/Dockerfile-py3-windows index f88c6dd..033f64d 100644 --- a/Dockerfile-py3-windows +++ b/Dockerfile-py3-windows @@ -1,10 +1,10 @@ -FROM ubuntu:22.04 +FROM ubuntu:24.04 LABEL maintainer="f.batonogov@yandex.ru" ENV DEBIAN_FRONTEND noninteractive -ARG WINE_VERSION=winehq-stable +ARG WINE_VERSION=winehq-devel ARG PYTHON_VERSION=3.12.3 ARG PYINSTALLER_VERSION=6.6.0 @@ -18,9 +18,9 @@ RUN set -x \ wget \ gpg-agent \ rename \ - && wget -nv https://dl.winehq.org/wine-builds/winehq.key \ - && apt-key add winehq.key \ - && add-apt-repository 'https://dl.winehq.org/wine-builds/ubuntu/' \ + && mkdir -pm755 /etc/apt/keyrings \ + && wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key \ + && wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/noble/winehq-noble.sources \ && apt update -qy \ && apt install --no-install-recommends -qfy \ $WINE_VERSION \