mirror of
https://github.com/azahar-emu/build-environment
synced 2025-11-06 23:19:59 +01:00
* transifex: Update CMake to 3.22.6; port https://github.com/yuzu-emu/build-environments/pull/67 curl * mingw: fix ffmpeg link * CI: build on all branches
17 lines
616 B
Docker
17 lines
616 B
Docker
FROM debian:bullseye-slim
|
|
LABEL maintainer="citraemu"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
ENV CMAKE_VER=3.22.6
|
|
|
|
RUN apt-get update && apt-get -y full-upgrade
|
|
RUN apt-get install -y git p7zip-full libqt5opengl5-dev qtmultimedia5-dev qttools5-dev qttools5-dev-tools python3-pip cmake curl
|
|
RUN pip3 install transifex-client
|
|
|
|
# Install CMake from upstream
|
|
RUN cd /tmp
|
|
RUN curl -OL https://github.com/Kitware/CMake/releases/download/v${CMAKE_VER}/cmake-${CMAKE_VER}-linux-x86_64.tar.gz && \
|
|
tar xvf cmake-${CMAKE_VER}-linux-x86_64.tar.gz && \
|
|
cp -rv cmake-${CMAKE_VER}-linux-x86_64/* /usr && \
|
|
rm -rf cmake-*
|