I'm very happy to see Hy language among the official repos! I think more people should know about it.
Docker Hub Official Repos: Announcing Language Stacks
11–20 of 30 posts
Re: Docker Hub Official Repos: Announcing Language Stacks
#12Earlier quoted context omitted.
Taking that a step further - why not a busybox image to get even smaller?
How would you install the build dependencies with busybox? Go requires some packages to build, from the Dockerfile: apt-get install -y ca-certificates curl gcc libc6-dev bzr git mercurial
Re: Docker Hub Official Repos: Announcing Language Stacks
#13Earlier quoted context omitted.
Taking that a step further - why not a busybox image to get even smaller?
How would you install the build dependencies with busybox? Go requires some packages to build, from the Dockerfile: apt-get install -y ca-certificates curl gcc libc6-dev bzr git mercurial
Re: Docker Hub Official Repos: Announcing Language Stacks
#14It's a nice quick way to get an application running in Docker but realistically would you want to be depending upon these images in production?
The power I see in Docker is the ability to create portable images that contain everything my application needs. I don't want to depend upon Docker (the company) to figure out what these images should look like.
Am I looking at this the wrong way?
Re: Docker Hub Official Repos: Announcing Language Stacks
#15Maybe I'm missing something here but I don't see this as being particularly useful? It's a nice quick way to get an application running in Docker but realistically would you want to be depending upon these images in production? The power I see in Docker is the ability to create portable images that contain everything my application needs. I don't want to depend upon Docker (the company) to figure out what these image…
Re: Docker Hub Official Repos: Announcing Language Stacks
#16Earlier quoted context omitted.
How would you install the build dependencies with busybox? Go requires some packages to build, from the Dockerfile: apt-get install -y ca-certificates curl gcc libc6-dev bzr git mercurial
It's possible to install another package manager like opkg. See https://github.com/progrium/busybox
Re: Docker Hub Official Repos: Announcing Language Stacks
#17Maybe I'm missing something here but I don't see this as being particularly useful? It's a nice quick way to get an application running in Docker but realistically would you want to be depending upon these images in production? The power I see in Docker is the ability to create portable images that contain everything my application needs. I don't want to depend upon Docker (the company) to figure out what these image…
If the Dockerfiles were available, I would feel better about it. Just glancing around I couldn't find the stacks Dockerfiles, so not sure those are available.
Re: Docker Hub Official Repos: Announcing Language Stacks
#18Maybe I'm missing something here but I don't see this as being particularly useful? It's a nice quick way to get an application running in Docker but realistically would you want to be depending upon these images in production? The power I see in Docker is the ability to create portable images that contain everything my application needs. I don't want to depend upon Docker (the company) to figure out what these image…
However, this is not that. Docker simply gives more emphasis to officially maintained docker images of popular projects, all of which have Dockerfiles available for your inspection!
Re: Docker Hub Official Repos: Announcing Language Stacks
#19Re: Docker Hub Official Repos: Announcing Language Stacks
#20Earlier quoted context omitted.
Note that the image maintainers (starting with tianon above) reserve the right to change the base distro they use for the images. So they can truly use the best tool for the job, now and in the future.
Changing the distro underneath would break all other Dockerfiles that assume they are running on a certain distro. How do we have to deal with cases when the distro is switched from debian to centos for example?.