Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends python3 python3-dev python3-venv python3-pip && \
ln -s /usr/bin/python3 /usr/bin/python && \
# Java
apt-get install -y --no-install-recommends openjdk-21-jdk && \
apt-get install -y --no-install-recommends openjdk-25-jdk && \
# .NET
apt-get install -y --no-install-recommends dotnet-sdk-8.0 dotnet-runtime-8.0 && \
# Ruby
Expand All @@ -61,9 +61,9 @@ RUN apt-get update && \
FROM languages AS tools

# Install Go
RUN curl -OL https://go.dev/dl/go1.24.4.linux-amd64.tar.gz && \
tar -C /usr/local -xf go1.24.4.linux-amd64.tar.gz && \
rm go1.24.4.linux-amd64.tar.gz && \
RUN curl -OL https://go.dev/dl/go1.25.6.linux-amd64.tar.gz && \
tar -C /usr/local -xf go1.25.6.linux-amd64.tar.gz && \
rm go1.25.6.linux-amd64.tar.gz && \
ln -sf /usr/local/go/bin/go /usr/bin/go

# Install Node.js with nvm
Expand Down
18 changes: 10 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@ build:
docker_version=$$(docker exec $$container_id docker --version | awk '{print $$3}' | tr -d ',') && \
docker rm -f $$container_id > /dev/null 2>&1 && \
sed -i.bak \
-e "s/| Node |.*|/| Node | $$node_version |/" \
-e "s/| Python |.*|/| Python | $$python_version |/" \
-e "s/| Java |.*|/| Java | $$java_version |/" \
-e "s/| Dotnet |.*|/| Dotnet | $$dotnet_version |/" \
-e "s/| GO |.*|/| GO | $$go_version |/" \
-e "s/| Ruby |.*|/| Ruby | $$ruby_version |/" \
-e "s/| Rust |.*|/| Rust | $$rust_version |/" \
-e "s/| Docker |.*|/| Docker | $$docker_version |/" \
-e "s/| Language Ecosystem | Version |.*/| Language Ecosystem | Version | Included Tools |/" \
-e "s/| ------------------ | ------- |.*/| ------------------ | ------- | -------------------- |/" \
-e "s/| Node |.*|.*/| Node | $$node_version | nvm, npm |/" \
-e "s/| Python |.*|.*/| Python | $$python_version | poetry, pipenv, pipx |/" \
-e "s/| Java |.*|.*/| Java | $$java_version | |/" \
-e "s/| Dotnet |.*|.*/| Dotnet | $$dotnet_version | |/" \
-e "s/| GO |.*|.*/| GO | $$go_version | |/" \
-e "s/| Ruby |.*|.*/| Ruby | $$ruby_version | rbenv, gem |/" \
-e "s/| Rust |.*|.*/| Rust | $$rust_version | |/" \
-e "s/| Docker |.*|.*/| Docker | $$docker_version | |/" \
README.md && \
rm README.md.bak && \
echo "README.md updated with latest tool versions"
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ This image is based on Ubuntu (latest LTS)

## Included Languages & Tools

| Language Ecosystem | Version |
| ------------------ | ------- |
| Node | 22.16.0 |
| Python | 3.12.3 |
| Java | 21.0.7 |
| Dotnet | 8.0.117 |
| GO | 1.24.4 |
| Ruby | 3.2.3 |
| Rust | 1.87.0 |
| Docker | 28.2.2 |
| Language Ecosystem | Version | Included Tools |
| ------------------ | ------- | -------------------- |
| Node | 22.16.0 | nvm, npm |
| Python | 3.12.3 | poetry, pipenv, pipx |
| Java | 21.0.7 | |
| Dotnet | 8.0.117 | |
| GO | 1.24.4 | |
| Ruby | 3.2.3 | rbenv, gem |
| Rust | 1.87.0 | |
| Docker | 28.2.2 | |

# Build Instructions

Expand Down