Skip to content

Commit 02def98

Browse files
authored
Merge branch 'Azure:master' into patch-2
2 parents 879f8e0 + e1f5b8f commit 02def98

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

SOURCES

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Azure Cloud Shell uses packages from CBL-D:
2+
- https://packages.microsoft.com/repos/cbl-d/
3+
4+
Source for packages in this directory are available at:
5+
- https://cbldsrc.blob.core.windows.net/quinault/index.html
6+
- https://cbldsrc.blob.core.windows.net/quinault-universe/index.html
7+
8+
Alternately to obtain sources, you may send a check or money order for US $5.00, including the package name, version, and return address to:
9+
10+
Source Code Compliance Team
11+
Microsoft Corporation
12+
One Microsoft Way
13+
Redmond, WA 98052
14+
USA

linux/base.Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ FROM sbidprod.azurecr.io/quinault
1717

1818
SHELL ["/bin/bash","-c"]
1919

20+
# Added to fix CELA requirement to enable users to understand where the source of CBL-D packages come from
21+
COPY SOURCES .
2022
COPY linux/aptinstall.sh .
2123
COPY linux/installMaven.sh .
2224

@@ -191,7 +193,7 @@ RUN chmod 755 /usr/local/bin/ansible* \
191193
&& pip3 install virtualenv \
192194
&& cd /opt \
193195
&& virtualenv -p python3 ansible \
194-
&& /bin/bash -c "source ansible/bin/activate && pip3 install ansible && pip3 install pywinrm>=0.2.2 && deactivate" \
196+
&& /bin/bash -c "source ansible/bin/activate && pip3 install ansible && pip3 install pywinrm\>\=0\.2\.2 && deactivate" \
195197
&& ansible-galaxy collection install azure.azcollection -p /usr/share/ansible/collections
196198

197199
# Install latest version of Istio

linux/installMaven.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Customized Maven install from Apache mirrors according to best practices
44

55
# Download maven from Apache Mirror
6-
MAVEN_VERSION=3.8.5
6+
MAVEN_VERSION=3.8.6
77
wget https://dlcdn.apache.org/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz -P /opt
88
tar xf /opt/apache-maven-$MAVEN_VERSION-bin.tar.gz -C /opt
99
ln -s /opt/apache-maven-$MAVEN_VERSION /opt/maven

0 commit comments

Comments
 (0)