Skip to content

Commit

Permalink
Merge branch 'master' into merge-onatal-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
joostfaassen authored Sep 18, 2024
2 parents ea2345a + cf96e86 commit 33001dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions Dockerfile.php7
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ RUN mkdir -p /etc/apt/keyrings \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \
&& apt-get update \
&& apt-get install nodejs -y
&& apt-get install nodejs -y \
&& apt-get autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg \
| gpg --dearmor >> /usr/share/keyrings/yarnkey.gpg \
Expand All @@ -62,7 +65,7 @@ RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg \
&& rm -rf /var/lib/apt/lists/*

RUN docker-php-ext-install bz2 \
&& install-php-extensions apcu gd gmp intl opcache pdo_mysql pdo_pgsql sockets zip imap mailparse soap mysqli bcmath soap \
&& install-php-extensions apcu gd gmp intl opcache pdo_mysql pdo_pgsql sockets zip imap mailparse soap mysqli bcmath \
&& apt-get autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile.php8
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ RUN mkdir -p /etc/apt/keyrings \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \
&& apt-get update \
&& apt-get install nodejs -y
&& apt-get install nodejs -y \
&& apt-get autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg \
| gpg --dearmor >> /usr/share/keyrings/yarnkey.gpg \
Expand All @@ -62,7 +65,7 @@ RUN curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg \
&& rm -rf /var/lib/apt/lists/*

RUN docker-php-ext-install bz2 \
&& install-php-extensions apcu gd gmp intl opcache pdo_mysql pdo_pgsql sockets zip imap mailparse soap mysqli bcmath soap \
&& install-php-extensions apcu gd gmp intl opcache pdo_mysql pdo_pgsql sockets zip imap mailparse soap mysqli bcmath \
&& apt-get autoremove \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 33001dd

Please sign in to comment.