this post was submitted on 04 Mar 2024
9 points (90.9% liked)

General Programming Discussion

7709 readers
13 users here now

A general programming discussion community.

Rules:

  1. Be civil.
  2. Please start discussions that spark conversation

Other communities

Systems

Functional Programming

Also related

founded 5 years ago
MODERATORS
 

I've been working on a small project called bdockerimg.

It's a collection of pre-built Docker images for some less common development tools (currently bmakelib, QuickLisp, and SDKMAN).

The idea is to streamline setup, especially for CI/CD pipelines, where I found myself repeating the same Dockerfile steps a lot. Basic functionality tests are included for a bit of extra peace of mind.


๐Ÿ‘€ Here's the repo if you're interested: https://github.com/bahmanm/bdockerimg
๐Ÿ—ฃ And here's the the Matrix room: https://matrix.to/#/#bdockerimg:matrix.org


I'm curious:

  • Does this seem like something you might find useful?
  • Are there any specific tools you'd love to see as easy-to-use Docker images?

This project is still in its early stages, so any feedback or contributions are much appreciated ๐Ÿ™

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 9 points 6 months ago* (last edited 6 months ago) (1 children)

You could programmatically generate them with Nix. That would at least streamline maintenance and make them more declarative.

https://youtu.be/0uixRE8xlbY

https://nix.dev/tutorials/nixos/building-and-running-docker-images.html

[โ€“] [email protected] 2 points 6 months ago

Thanks for the pointer! Very interesting. I actually may end up doing a prototype and see how far I can get.