You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

40 lines
772 B

FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
# Create a user account lime (UID 1027) that the container will run as
RUN useradd -m -u 1027 -s /bin/bash lime
RUN apt-get update && apt-get -y full-upgrade
RUN apt-get install -y \
# Tools
build-essential \
ccache \
clang \
clang-format-18 \
cmake \
curl \
git \
lld \
llvm \
ninja-build \
p7zip-full \
python3-pip \
software-properties-common \
unzip \
wget \
zip \
# Qt 6
qt6-base-dev \
qt6-base-private-dev \
libqt6opengl6-dev \
qt6-multimedia-dev \
qt6-l10n-tools \
qt6-tools-dev \
qt6-tools-dev-tools \
libgl-dev \
# glslang
glslang-dev \
glslang-tools \
# Other libraries
libsdl2-dev