Add chisel
tool to the Ubuntu .NET 10 SDK image to make adding additional slices easier
#6186
Labels
chisel
tool to the Ubuntu .NET 10 SDK image to make adding additional slices easier
#6186
Describe the Problem
With #6135, it's now possible to install new packages on top of an existing Ubuntu Chisel installation. Here's an example of what that might look like today:
https://gist.github.com/lbussell/e54483958fe6f1ccb8a44b0a07c296f5#file-1-chisel-install-additional-slices-dockerfile
You'll notice that about a third of the Dockerfile is dedicated to installing a specific version of
chisel
.Describe the Solution
We could use the
go
CLI for installing the tool - e.g.go install github.com/canonical/chisel/cmd/chisel@<tag>
. But that would still require installing thego
package on top of the .NET SDK image.If we included the
chisel
tool in the .NET SDK image, then:chisel
that we used to build our own runtime-deps image.The resulting user Dockerfile would then look something like this:
Additional Context
Related: #4811
The text was updated successfully, but these errors were encountered: