ADD: meson-gcc docker image

This commit is contained in:
Guillaume Lamé 2025-01-22 11:33:09 +01:00
parent d41dfbf3ae
commit a8f1e52487
2 changed files with 42 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM gcc:latest
# Installer Python3, pip, Ninja et Meson
RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
ninja-build && \
pip3 install meson && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# Définir le répertoire de travail par défaut
WORKDIR /app