We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c084bb3 commit 55be07aCopy full SHA for 55be07a
Dockerfile
@@ -4,6 +4,10 @@ ENV IONIC_VERSION 7.2.1
4
5
RUN apt-get update && apt-get install -y git bzip2 openssh-client && \
6
npm install -g --unsafe-perm @ionic/cli@${IONIC_VERSION} && \
7
+ # Fix graceful-fs compatibility with Node.js 22 after Ionic CLI installation
8
+ npm install -g graceful-fs@latest && \
9
+ npm update -g && \
10
+ npm rebuild && \
11
ionic --version && \
12
cd /tmp && \
13
ionic start myNewProject blank --type=react --capacitor && \
0 commit comments