golang-container icon indicating copy to clipboard operation
golang-container copied to clipboard

Golang container image sources

Results 8 golang-container issues
Sort by recently updated
recently updated
newest added

Update RHEL imagestreams for UBI9: - golang:1.19 -> registry.redhat.io/ubi9/go-toolset:1.19 - golang:1.20 -> registry.redhat.io/ubi9/go-toolset:1.20

Hello, we would like to use the s2i golang library to build Go functions in Knative Functions. The function project looks like this: ``` ❯ tree . . ├── README.md...

Currently, the image stream for CentOS lists its go version as 1.8. However, the image associated with the stream is version 1.10.2. This pull request clarifies that the image stream...

This commit updates container-common-scripts directory. It also removes `s2i-build` and `s2i-build-incremental` scripts and use instead of that `ct_s2i_build_as_df`. Versions `1.9` and `1.10` are excluded from fedora.

Currently only the tags `1` and `latest` are published to https://hub.docker.com/r/centos/go-toolset-7-centos7/tags/ though most Go applications need to be pinned to certain minor release numbers. I'd suggest that this tag strategy...

Naive implementation of the initial module support, by just extracting meta data from the go.mod.

https://github.com/sclorg/golang-container/blob/master/1.10/s2i/bin/assemble#L36 assumes that vendor directory is referenced from INSTALL_URL only. However vendor dir can be any higher in directory structure. Usually it is where IMPORT_URL points. Fix proposal: Here is...