File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM beevelop/cordova
33ENV IONIC_VERSION 7.2.1
44
55RUN apt-get update && apt-get install -y git bzip2 openssh-client && \
6- npm install -g --unsafe-perm @ionic/cli@${IONIC_VERSION} && \
6+ npm install -g @ionic/cli@${IONIC_VERSION} && \
77 ionic --version && \
88 cd /tmp && \
99 ionic start myNewProject blank --type=react --capacitor && \
@@ -12,6 +12,7 @@ RUN apt-get update && apt-get install -y git bzip2 openssh-client && \
1212 ionic capacitor build android --no-open && \
1313 rm -rf /tmp/myNewProject && \
1414 rm -rf /var/lib/apt/lists/* && apt-get clean && \
15- npm cache clean --force && \
15+ cd .. && \
16+ npm cache clean --force 2>/dev/null && \
1617 node -v && npm -v && yarn -v && ionic -v && \
1718 mvn -v && gradle -v && java -version && ant -version
You can’t perform that action at this time.
0 commit comments