-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d67f705
commit c0d8de9
Showing
5 changed files
with
26 additions
and
12 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
#dpkg-query -Wf '${Installed-Size}\t${Package}:${Version}' | sort -n | ||
#above to get list of binaries installed | ||
#merging the RUN commands in the dockerfile using | ||
#shell form does not seem to cut down the image size. | ||
#Executing the commands below should normally remove | ||
#around 200mb of data, however that is not reflected | ||
#in the final image size either | ||
apt-get -y remove --purge git; | ||
apt-get clean; | ||
rm -rf /var/lib/apt/lists/*; | ||
npm cache clean --force; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "ibowankenobi-i-pv", | ||
"version": "0.1.22", | ||
"version": "0.1.23", | ||
"org_ipv": { | ||
"version": "2.5" | ||
}, | ||
|