This commit is contained in:
Ludovic Cartier
2025-01-06 17:35:10 +01:00
parent 3b3ba303a4
commit 96cf5d2432
+6
View File
@@ -18,6 +18,12 @@ RUN apt install -yqq php8.3-cli php8.3-common php8.3-curl php8.3-imagick php8.3-
# install nodeJS
RUN apt install -yqq nodejs npm
# install yarn
RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg >/dev/null
RUN sh -c 'echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" > /etc/apt/sources.list.d/yarn.list'
RUN apt update
RUN apt install -yqq yarn
# install git
RUN apt install -yqq git