Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
matrix:
php:
- "8.4"
node:
- "22"
product-version:
- "~4.6.x-dev"
node:
- "22"
include:
- php: "7.3"
product-version: "~3.3.x-dev"
Expand Down
4 changes: 3 additions & 1 deletion php/Dockerfile-node12
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ RUN apt-get update -y \
&& node -v \
&& npm -v \
\
&& npm install -g yarn@1.22.19 \
&& npm install -g yarn@1.22.22 \
\
&& yarn -v \
\
&& rm -rf /var/lib/apt/lists/*
10 changes: 7 additions & 3 deletions php/Dockerfile-node14
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ FROM ibexa_php:latest
# Install Node.js and Yarn
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
ca-certificates curl gnupg xz-utils \
ca-certificates curl xz-utils \
\
&& curl -fsSL https://nodejs.org/dist/v14.21.3/node-v14.21.3-linux-x64.tar.xz \
| tar -xJ -C /usr/local --strip-components=1 \
\
&& corepack enable \
&& corepack prepare yarn@1.22.22 --activate \
&& node -v \
&& npm -v \
\
&& npm install -g yarn@1.22.22 \
\
&& yarn -v \
\
&& rm -rf /var/lib/apt/lists/*
6 changes: 4 additions & 2 deletions php/Dockerfile-node16
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ FROM ibexa_php:latest
# Install Node.js and Yarn
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
ca-certificates curl gnupg \
ca-certificates curl \
\
&& curl -fsSL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get install -y nodejs \
\
&& node -v \
&& npm -v \
\
&& npm install -g yarn@1.22.22 \
\
&& node -v \
&& yarn -v \
\
&& rm -rf /var/lib/apt/lists/*
10 changes: 7 additions & 3 deletions php/Dockerfile-node18
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ FROM ibexa_php:latest
# Install Node.js and Yarn
RUN apt-get update -y \
&& apt-get install -y --no-install-recommends \
ca-certificates curl gnupg \
ca-certificates curl \
\
&& curl -fsSL https://deb.nodesource.com/setup_18.x | bash - \
&& apt-get install -y nodejs \
\
&& corepack enable \
&& corepack prepare yarn@stable --activate \
&& node -v \
&& npm -v \
\
&& npm install -g yarn@1.22.22 \
\
&& yarn -v \
\
&& rm -rf /var/lib/apt/lists/*
Loading