File tree 2 files changed +6
-1
lines changed
integrations/docker/images
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
- 18 : [Silabs] Adds bugfix for symlink for docker use and optimize SDK download
1
+ 19 : [Silabs] Remove unnecessary files from the gecko-sdk for the docker image
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ RUN set -x \
17
17
RUN wget https://github.com/SiliconLabs/gecko_sdk/releases/download/v4.3.2/gecko-sdk.zip -O /tmp/gecko_sdk.zip \
18
18
&& unzip /tmp/gecko_sdk.zip -d /tmp/gecko_sdk \
19
19
&& rm -rf /tmp/gecko_sdk.zip \
20
+ # Deleting files that are not needed to save space
21
+ && rm -rf /tmp/gecko_sdk/protocol/flex /tmp/gecko_sdk/protocol/z-wave /tmp/gecko_sdk/protocol/zigbee /tmp/gecko_sdk/protocol/wisun \
22
+ && find /tmp/gecko_sdk/protocol/bluetooth /tmp/gecko_sdk/platform -name "*.a" -type f -delete \
23
+ && find /tmp/gecko_sdk/protocol/openthread -name "*efr32mg21*" -delete \
24
+ && find /tmp/gecko_sdk/protocol/openthread -name "*efr32mg13*" -delete \
20
25
&& : # last line
21
26
22
27
# Clone WiSeConnect Wi-Fi and Bluetooth Software 2.8.2 (4fa5c5f)
You can’t perform that action at this time.
0 commit comments