-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update winehq dockerfile to ubuntu 24.04.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:22.04 | ||
FROM ubuntu:24.04 | ||
MAINTAINER "Jose Fonseca" <[email protected]> | ||
ENV container docker | ||
|
||
|
@@ -12,8 +12,8 @@ RUN \ | |
dpkg --add-architecture i386 && \ | ||
apt-get update && apt-get install -y \ | ||
apt-transport-https ca-certificates gnupg software-properties-common wget && \ | ||
wget -q -O /etc/apt/trusted.gpg.d/winehw.asc https://dl.winehq.org/wine-builds/winehq.key && \ | ||
echo 'deb https://dl.winehq.org/wine-builds/ubuntu/ jammy main' > /etc/apt/sources.list.d/wine.list && \ | ||
wget -q -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-get update && apt-get install -qq -y --install-recommends \ | ||
mingw-w64 ninja-build cmake python3 xinit xvfb \ | ||
winehq-devel && \ | ||
|