Fix all mods images

This commit is contained in:
cytopia
2021-05-16 14:41:01 +02:00
parent d903951329
commit 59c30b8f24
19 changed files with 84 additions and 173 deletions

View File

@@ -132,6 +132,16 @@ RUN set -eux \
### Install custom software
###
RUN set -eux \
# -------------------- pip --------------------
&& DEBIAN_FRONTEND=noninteractive apt-get update -qq \
&& DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --no-install-recommends --no-install-suggests \
libpython3-dev \
python3 \
python3-pip \
&& DEBIAN_FRONTEND=noninteractive apt-get purge -qq -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& rm -rf /var/lib/apt/lists/* \
\
\
# -------------------- nvm --------------------
&& git clone https://github.com/creationix/nvm /opt/nvm \
&& cd /opt/nvm \
@@ -365,6 +375,9 @@ RUN set -eux \
### Install pip (Python) packages
###
RUN set -eux \
# -------------------- yq --------------------
&& pip3 install --no-cache-dir --force-reinstall yq || true \
\
\
&& rm -rf /root/.cache/pip \
&& rm -rf /tmp/* \
@@ -431,6 +444,7 @@ RUN set -eux \
# -------------------- Composer --------------------
\
# -------------------- PIP --------------------
&& yq --version 2>&1 | grep -E '^yq\s+[0-9][.0-9]+$' \
\
# -------------------- NPM --------------------
&& ng version 2>&1 | grep -iE 'Angular CLI:\s*[0-9][.0-9]+' \