-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[sonic-slave]: Refactor Dockerfile. #502
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Put all packages installation into single apt-get command. This will allow us to do apt-get update only once. Eliminate unnecessary intermediate layers where they are not required. Signed-off-by: marian-pritsak <marianp@mellanox.com>
On my build machine time for building sonic-slave was reduced from 45 min to 28 min. |
lguohan
approved these changes
Apr 13, 2017
lguohan
added a commit
that referenced
this pull request
May 19, 2018
* a1b6fa3 2018-04-16 | [vlanmgr]: Fix the incorrect ip link del command for vlan remove (#474) (HEAD, origin/201803) [Jipan Yang] * 66287cf 2018-05-18 | fix SAI_BUFFER_PROFILE_ATTR_SHARED_DYNAMIC_TH value type mismatch bug (#502) [yangbashuang] * 43365f3 2018-05-14 | [crmorch]: neighbor used counter increased twice (#472) (#501) [MaxPolovyi] Signed-off-by: Guohan Lu <gulv@microsoft.com>
lguohan
added a commit
to lguohan/sonic-buildimage
that referenced
this pull request
Oct 9, 2019
* 1f4a1d7 2019-09-24 | Add warm boot support with removed/created port (sonic-net#515) (HEAD, origin/master, origin/HEAD) [Kamil Cudnik] * 59e530a 2019-09-20 | Add support for debug counters (sonic-net#517) [Danny Allen] * 1ed09e0 2019-09-20 | fully support bulk_remove in sairedis (sonic-net#516) [Dong Zhang] * 6cb1b31 2019-09-17 | Add support for port remove and port create (no warm boot) (sonic-net#500) [Kamil Cudnik] * 83d86ed 2019-09-17 | Fix c_str() in printf for string (sonic-net#514) [Kamil Cudnik] * 11b44b5 2019-09-16 | Advance SAI reference pointer to v1.5.0 (sonic-net#509) [Wenda Ni] * 38c6945 2019-09-14 | support sflow on virtual switch (sonic-net#498) [Rakesh Datta] * e7d766e 2019-09-09 | Add acl counter match logic based on acl entry field (sonic-net#511) [Kamil Cudnik] * 58845ce 2019-09-06 | Add extra check for warm boot discovered RIDs (sonic-net#502) [Kamil Cudnik] * b4893ef 2019-09-05 | [flex counter]: Lower the severity of log during rif counter support check (sonic-net#504) [shikenghua] * b859344 2019-09-03 | fix found typo in new added syncMode related codes (sonic-net#506) [Dong Zhang] Signed-off-by: Guohan Lu <gulv@microsoft.com>
lguohan
added a commit
that referenced
this pull request
Oct 18, 2019
[submodule]: update sonic-sairedis 1f4a1d7 2019-09-24 | Add warm boot support with removed/created port (#515) (HEAD, origin/master, origin/HEAD) [Kamil Cudnik] 59e530a 2019-09-20 | Add support for debug counters (#517) [Danny Allen] 1ed09e0 2019-09-20 | fully support bulk_remove in sairedis (#516) [Dong Zhang] 6cb1b31 2019-09-17 | Add support for port remove and port create (no warm boot) (#500) [Kamil Cudnik] 83d86ed 2019-09-17 | Fix c_str() in printf for string (#514) [Kamil Cudnik] 11b44b5 2019-09-16 | Advance SAI reference pointer to v1.5.0 (#509) [Wenda Ni] 38c6945 2019-09-14 | support sflow on virtual switch (#498) [Rakesh Datta] e7d766e 2019-09-09 | Add acl counter match logic based on acl entry field (#511) [Kamil Cudnik] 58845ce 2019-09-06 | Add extra check for warm boot discovered RIDs (#502) [Kamil Cudnik] b4893ef 2019-09-05 | [flex counter]: Lower the severity of log during rif counter support check (#504) [shikenghua] b859344 2019-09-03 | fix found typo in new added syncMode related codes (#506) [Dong Zhang] also update broadcom and mellanox SAI
madhanmellanox
pushed a commit
to madhanmellanox/sonic-buildimage
that referenced
this pull request
Mar 23, 2020
dmytroxshevchuk
pushed a commit
to dmytroxshevchuk/sonic-buildimage
that referenced
this pull request
Aug 31, 2020
* Add extra check for warm boot discovered RIDs * dump asic operations when rid2vid map missmatch
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Put all packages installation into single apt-get command. This will
allow us to do apt-get update only once.
Eliminate unnecessary intermediate layers where they are not required.
Signed-off-by: marian-pritsak marianp@mellanox.com