Update package images to use ubuntu:24.04 with gcc-13 and mingw-13

This commit is contained in:
Nikita Lisitsa 2024-03-28 15:27:54 +03:00
parent 6770ce908f
commit 119a323b72
4 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
# Install tools
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
@ -9,7 +9,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
libasound2-dev libpulse-dev
# Set user
RUN useradd -u 1000 -U -d /home -M worker
RUN useradd -u 1000 -U -o -d /home -M worker
RUN chown -R worker:worker /home /usr/local
USER worker

View file

@ -1,5 +1,5 @@
set(CMAKE_C_COMPILER gcc-11)
set(CMAKE_CXX_COMPILER g++-11)
set(CMAKE_C_COMPILER gcc)
set(CMAKE_CXX_COMPILER g++)
set(CMAKE_BUILD_TYPE Release)
set(PSEMEK_PACKAGE_MODE ON)

View file

@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
# Install tools
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
@ -10,7 +10,7 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y \
libxi-dev libxrender-dev
# Set user
RUN useradd -u 1000 -U -d /home -M worker
RUN useradd -u 1000 -U -o -d /home -M worker
RUN chown -R worker:worker /home /usr/local
USER worker

View file

@ -1,5 +1,5 @@
set(CMAKE_C_COMPILER gcc-11)
set(CMAKE_CXX_COMPILER g++-11)
set(CMAKE_C_COMPILER gcc)
set(CMAKE_CXX_COMPILER g++)
set(CMAKE_BUILD_TYPE Release)
set(PSEMEK_PACKAGE_MODE ON)