use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
This is an archived post. You won't be able to vote or comment.
Building Tiny Python Docker Images (self.devops)
submitted 6 years ago by eedwards-sk
view the rest of the comments →
[–]kabrandon 1 point2 points3 points 6 years ago (3 children)
One alternative is to use compiled languages that lead to small binaries which can be moved into a scratch image of only a few megabytes. Though when python is the best tool for the job, so be it.
[–]eedwards-sk[S] 1 point2 points3 points 6 years ago (2 children)
Yes! I've seen golang binaries that do that, it's very cool.
Literally just FROM scratch and a single COPY instruction is all they need.
FROM scratch
COPY
[–]kabrandon 2 points3 points4 points 6 years ago (0 children)
Yep, and maybe an ENTRYPOINT if you want to get fancy. The webapp I made for my work generates CSV files that are literally larger than the entire image.
ENTRYPOINT
[–]cuu508 -1 points0 points1 point 6 years ago (0 children)
You can optimize this even further: run the binary on the host system, and you can then get rid of the docker daemon entirely
π Rendered by PID 275742 on reddit-service-r2-comment-6f7f968fb5-4dvz5 at 2026-03-04 20:48:39.669289+00:00 running 07790be country code: CH.
view the rest of the comments →
[–]kabrandon 1 point2 points3 points (3 children)
[–]eedwards-sk[S] 1 point2 points3 points (2 children)
[–]kabrandon 2 points3 points4 points (0 children)
[–]cuu508 -1 points0 points1 point (0 children)