Docker templates for most common programming languages.
Project Link: ttps://github.com/gauthamp10/dockerfile-boilerplates
Feel free to contribute.https://github.com/gauthamp10/dockerfile-boilerplates/blob/master/CONTRIBUTING.md
Docker templates for most common programming languages.
Project Link: ttps://github.com/gauthamp10/dockerfile-boilerplates
Feel free to contribute.https://github.com/gauthamp10/dockerfile-boilerplates/blob/master/CONTRIBUTING.md
For further actions, you may consider blocking this person and/or reporting abuse
Ajeet Singh Raina -
vorillaz -
Thomas Bnt ☕ -
Rafael Pazini -
Top comments (10)
I glanced over a few of them, and If there was one thing I'd recommend, it's always using
In case someone doesn't have User Namespace Remapping active, it would also run as nobody and your System won't be compromised as easily.
If you want I can take a longer look later and recommend some Basic hardening in an issue, or create some pull requests for you.
Other than that, thanks for doing this :)
I was patching up the same . Will do ASAP.
Now I'm adding a user to group to do things other than package downloading.
It would be helpful if you could guide me when you have the time @habereder
Thanks by the way.
Gladly!
I just forked it and will implement some basic things in different branches for you to cherry-pick then :)
Cool.
I looked over the Go and PHP images. There's no benefit to using either one - they just wrap existing tool images and add metadata that will vary greatly between developers.
When I see a Dockerfile template for Go, I want to see a multistage build toolchain that produces a very slim binary inside a Docker image.
When I see a Dockerfile template for PHP, there are far too many possible ways to build a Docker image for such an app, so I'd err on the side of making several boilerplate images - one for a straight Composer build, one for a Laravel build, and one for a Symfony build. All of them would have to be multistage.
The project was built for just to be able to run source directly and not for production purpose in the beginning. But now more people are asking for multistage build which are useful as mentioned for real world development. I didn't expect such an overwhelming response for such a project. So now I will try to add useful multistage builds ASAP. For now, if interested anyone could open a pull request and add one.
Thank you for your feedback.
Hi there, this post might fit better as a DEV Listing. It’s a dedicated area of the platform where community members and organizations are encouraged to publish information related to events, products, services, job listings, and everything in between.
Oh... I was new to the community. And I didn't knew. Thanks by the way.
Nicely done! I jumped straight to my favorite and found an alpine build, which has been on my list of things to explore (the standard, non-alpine rust build uses a lot of disk). This moves me forward! Thanks a bunch.
Appreciate it. Do note that these image are not production ready yet.