File tree Expand file tree Collapse file tree 1 file changed +23
-4
lines changed Expand file tree Collapse file tree 1 file changed +23
-4
lines changed Original file line number Diff line number Diff line change 11# Base image
22FROM ubuntu:22.04
33
4- # Install build dependencies
5- RUN apt-get update && apt-get install -y \
6- python3 python3-pip meson ninja-build build-essential git curl \
7- && rm -rf /var/lib/apt/lists/*
4+ # Set environment variables to avoid interaction
5+ ENV DEBIAN_FRONTEND=noninteractive \
6+ TZ=UTC
7+
8+ # Install system dependencies and clean up
9+ RUN apt-get update && \
10+ apt-get install -y \
11+ build-essential \
12+ clang \
13+ gcc \
14+ g++ \
15+ gdb \
16+ llvm \
17+ libstdc++-10-dev \
18+ wget \
19+ python3 \
20+ python3-pip \
21+ git \
22+ tzdata && \
23+ apt-get clean && \
24+ rm -rf /var/lib/apt/lists/*
25+
26+ RUN python3 -m pip install --no-cache-dir meson==1.8.0 ninja==1.10.2
827
928# Set workdir
1029WORKDIR /app
You can’t perform that action at this time.
0 commit comments