Skip to content

Commit eb20b19

Browse files
authored
Merge pull request #32 from dotmh/fix/devcontainer-just-install
Fix/devcontainer just install
2 parents b2193d3 + 0b9187c commit eb20b19

File tree

10 files changed

+10
-12
lines changed

10 files changed

+10
-12
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.0.0
1+
14.1.0

containers/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ RUN apt -y install --no-install-recommends gpg &&\
2323
RUN apt -y install --no-install-recommends bat
2424

2525
# Install Just https://github.com/casey/just
26-
RUN wget -qO - 'https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub' | gpg --dearmor | sudo tee /usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg 1> /dev/null &&\
27-
echo "deb [arch=all,$(dpkg --print-architecture) signed-by=/usr/share/keyrings/prebuilt-mpr-archive-keyring.gpg] https://proget.makedeb.org prebuilt-mpr $(lsb_release -cs)" | sudo tee /etc/apt/sources.list.d/prebuilt-mpr.list &&\
28-
sudo apt update && apt install -y just
26+
RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin
2927

3028
# Update zshrc automatically
3129
SHELL ["zsh", "-c"]

devcontainers/base/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "base",
33
"name": "DotMH Base Dev Container",
4-
"version": "14.0.0",
4+
"version": "14.1.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The base dev container for interacting with the base container image",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/bun/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "bun",
33
"name": "DotMH Bun Dev Container",
4-
"version": "14.0.0",
4+
"version": "14.1.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Bun dev container for developing with Bun",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/cloud/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "cloud",
33
"name": "DotMH Cloud Dev Container",
4-
"version": "14.0.0",
4+
"version": "14.1.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The cloud dev container for interacting with the cloud container image",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/csharp/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "csharp",
33
"name": "DotMH C# Dev Container",
4-
"version": "14.0.0",
4+
"version": "14.1.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Go dev container for developing with C#",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/go/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "go",
33
"name": "DotMH Go Dev Container",
4-
"version": "14.0.0",
4+
"version": "14.1.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Go dev container for developing with Go",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/kotlin/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "kotlin",
33
"name": "DotMH Kotlin Dev Container",
4-
"version": "14.0.0",
4+
"version": "14.1.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Kotlin dev container for developing with Kotlin",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/node/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "node",
33
"name": "DotMH Node Dev Container",
4-
"version": "14.0.0",
4+
"version": "14.1.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Node dev container for developing with Node and PNPM",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

devcontainers/rust/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "rust",
33
"name": "DotMH Rust Dev Container",
4-
"version": "14.0.0",
4+
"version": "14.1.0",
55
"publisher": "DotMH <[email protected]>",
66
"description": "The Rust dev container for developing with Rustup, Rust and Cargo",
77
"licenseURL": "https://github.com/dotmh/devcontainer/blob/main/LICENSE",

0 commit comments

Comments
 (0)