@pnp/cli-microsoft365 10.9.0-beta.a6007fc → 10.9.0-beta.a81e0f3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.devcontainer/Dockerfile +1 -1
- package/Dockerfile +3 -3
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/package.json +1 -1
package/.devcontainer/Dockerfile
CHANGED
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM
|
|
1
|
+
FROM waldekm/powershell:alpine-3.18
|
|
2
2
|
|
|
3
3
|
ARG CLI_VERSION=latest
|
|
4
4
|
|
|
@@ -39,8 +39,8 @@ ENV 0="/bin/bash" \
|
|
|
39
39
|
|
|
40
40
|
RUN bash -c 'echo "export PATH=$PATH:/home/cli-microsoft365/.npm-global/bin:/home/.local/bin" >> ~/.bash_profile' \
|
|
41
41
|
&& bash -c 'echo "export CLIMICROSOFT365_ENV=\"docker\"" >> ~/.bash_profile' \
|
|
42
|
-
&& bash -c 'npm i -g @pnp/cli-microsoft365@${CLI_VERSION} --
|
|
43
|
-
&& bash -c 'echo "source /etc/
|
|
42
|
+
&& bash -c 'npm i -g @pnp/cli-microsoft365@${CLI_VERSION} --production --quiet --no-progress' \
|
|
43
|
+
&& bash -c 'echo "source /etc/profile.d/bash_completion.sh" >> ~/.bash_profile' \
|
|
44
44
|
&& bash -c 'echo "alias \"m365?\"=\"m365_chili\"" >> ~/.bash_profile' \
|
|
45
45
|
&& bash -c 'echo ". .bashrc" >> ~/.bash_profile' \
|
|
46
46
|
&& bash -c 'npm cache clean --force' \
|