Skip to content

Commit

Permalink
[2023.06.24] Update software
Browse files Browse the repository at this point in the history
  • Loading branch information
auguwu committed Jun 24, 2023
1 parent 9fb1783 commit 1ebccc8
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 27 deletions.
10 changes: 5 additions & 5 deletions images/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ RUN usermod -aG docker ${USERNAME}

# stuff here
ENV BAZEL_BUILDTOOLS_VERSION="6.1.2"
ENV GITHUB_CLI_VERSION="2.30.0"
ENV CODER_CLI_VERSION="0.23.7"
ENV TERRAFORM_VERSION="1.4.6"
ENV GITHUB_CLI_VERSION="2.31.0"
ENV CODER_CLI_VERSION="0.24.1"
ENV TERRAFORM_VERSION="1.5.1"
ENV BAZELISK_VERSION="1.17.0"
ENV KUBECTL_VERSION="1.27.2"
ENV HELM_VERSION="3.12.0"
ENV KUBECTL_VERSION="1.27.3"
ENV HELM_VERSION="3.12.1"

# Get current architecture and download software here
# also this looks like shit, i know!
Expand Down
20 changes: 10 additions & 10 deletions images/base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ This image is the main base for all of the images in this repository.
| Name | Description | Version |
| ---------------- | --------------------------------------------------------------------------------- | -------------------------- |
| Bazel Buildtools | A bazel BUILD file formatter and editor | [v6.1.2][bazel-buildtools] |
| GitHub CLI | GitHub's official command line utility | [v2.30.0][github-cli] |
| Coder (OSS) | Remote development environments on your infrastructure provisioned with Terraform | [v0.23.7][coder] |
| Terraform | Automate Infrastructure on Any Cloud | [v1.4.6][terraform] |
| GitHub CLI | GitHub's official command line utility | [v2.31.0][github-cli] |
| Coder (OSS) | Remote development environments on your infrastructure provisioned with Terraform | [v0.24.1][coder] |
| Terraform | Automate Infrastructure on Any Cloud | [v1.5.1][terraform] |
| Bazelisk | A user-friendly launcher for Bazel. | [v1.17.0][bazelisk] |
| `kubectl` | kubectl controls the Kubernetes cluster manager. | [v1.27.2][kubectl] |
| `kubectl` | kubectl controls the Kubernetes cluster manager. | [v1.27.3][kubectl] |
| `bazel` | a fast, scalable, multi-language and extensible build system | [v6.2.1][bazel] |
| `helm` | The Kubernetes Package Manager | [v3.12.0][helm] |
| `helm` | The Kubernetes Package Manager | [v3.12.1][helm] |

[bazel-buildtools]: https://github.com/bazelbuild/buildtools/releases/tag/v6.1.2
[github-cli]: https://github.com/cli/cli/releases/tag/v2.30.0
[terraform]: https://github.com/hashicorp/terraform/releases/tag/v1.4.6
[github-cli]: https://github.com/cli/cli/releases/tag/v2.31.0
[terraform]: https://github.com/hashicorp/terraform/releases/tag/v1.5.1
[bazelisk]: https://github.com/bazelbuild/bazelisk/releases/tag/v1.17.0
[kubectl]: https://github.com/kubernetes/kubernetes/releases/tag/v1.27.2
[coder]: https://github.com/coder/coder/releases/tag/v0.23.7
[kubectl]: https://github.com/kubernetes/kubernetes/releases/tag/v1.27.3
[coder]: https://github.com/coder/coder/releases/tag/v0.24.1
[bazel]: https://github.com/bazelbuild/bazel/releases/tag/6.2.1
[helm]: https://github.com/helm/helm/releases/tag/v3.12.0
[helm]: https://github.com/helm/helm/releases/tag/v3.12.1

### Helm
Helm comes with Bitnami's charts library preconfigured.
6 changes: 3 additions & 3 deletions images/dotnet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
FROM ghcr.io/auguwu/coder-images/base

ENV USERNAME=noel
ENV DOTNET_VERSION=7.0.203
ENV DOTNET_VERSION=7.0.305
ENV DEBIAN_FRONTEND=noninteractive
ENV X64_PR="ebfd0bf8-79bd-480a-9e81-0b217463738d/9adc6bf0614ce02670101e278a2d8555"
ENV ARM_PR="6cd2eaa7-4c06-4168-b90b-ee2d6bb40b10/4a8387eb07e17d262bfb9965f6d34462"
ENV X64_PR="87a55ae3-917d-449e-a4e8-776f82976e91/03380e598c326c2f9465d262c6a88c45"
ENV ARM_PR="e2ca71f5-17e9-4dbd-aaf4-1e0fa225a212/61c440dae017c7129de10cfbfe36fd90"

USER root

Expand Down
4 changes: 2 additions & 2 deletions images/dotnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ This image extends from the [base image](https://github.com/auguwu/coder-images/
## Bundled Software
| Name | Description | Version |
| -------- | ---------------------------------------------------------- | ---------------------- |
| .NET SDK | Free. Cross-platform. Open source. Build any app with .NET | [v7.0.5][dotnet-sdk] |
| .NET SDK | Free. Cross-platform. Open source. Build any app with .NET | [v7.0.8][dotnet-sdk] |

[dotnet-sdk]: https://github.com/dotnet/sdk/releases/tag/v7.0.203
[dotnet-sdk]: https://github.com/dotnet/sdk/releases/tag/v7.0.305
4 changes: 2 additions & 2 deletions images/golang/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ ENV USERNAME=noel
USER root

# Put versions in environment variables
ENV GOLANG_VERSION="1.20.4"
ENV GOLANG_VERSION="1.20.5"
ENV GORELEASER_VERSION="1.18.2"
ENV GOLANGCI_VERSION="1.53.2"
ENV GOLANGCI_VERSION="1.53.3"

# Install packages here.
RUN set -eux; \
Expand Down
4 changes: 2 additions & 2 deletions images/golang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ This is the Docker image that bundles the Go compiler with **goreleaser** and **
| Golang CI | Fast linters Runner for Go | [v1.53.2][golangci] |

[goreleaser]: https://github.com/goreleaser/goreleaser/releases/tag/v1.18.2
[golangci]: https://github.com/golangci/golangci-lint/releases/tag/v1.53.2
[golang]: https://github.com/golang/go/releases/tag/go1.20.4
[golangci]: https://github.com/golangci/golangci-lint/releases/tag/v1.53.3
[golang]: https://github.com/golang/go/releases/tag/go1.20.5
2 changes: 1 addition & 1 deletion images/node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ENV USERNAME=noel
USER root

# versions here
ENV NODE_VERSION="20.2.0"
ENV NODE_VERSION="20.3.1"

# Install xz-utils so we can unpack the Node.js installation
RUN DEBIAN_FRONTEND="noninteractive" apt install -y xz-utils
Expand Down
4 changes: 2 additions & 2 deletions images/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ This image extends from the [base image](https://github.com/auguwu/coder-images/
## Bundled Software
| Name | Description | Version |
| ------- | ----------------------------------- | ---------------- |
| Node.js | Node.js JavaScript runtime ✨🐢🚀✨ | [v20.2.0][node] |
| Node.js | Node.js JavaScript runtime ✨🐢🚀✨ | [v20.3.1][node] |

[node]: https://github.com/nodejs/node/releases/v20.2.0
[node]: https://github.com/nodejs/node/releases/v20.3.1

0 comments on commit 1ebccc8

Please sign in to comment.