ADD: meson-gcc docker image
This commit is contained in:
parent
d41dfbf3ae
commit
a8f1e52487
2 changed files with 42 additions and 0 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue