Skip to content

Commit

Permalink
use universal:2-focal base image to avoid breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kylehoehns committed Nov 6, 2023
1 parent bf2cc86 commit bef6e7f
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/c-sharp/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "C-Sharp",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"postCreateCommand": "cd c-sharp && make init",
"customizations": {
"vscode": {
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Default",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"customizations": {
"vscode": {
"settings": {
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/go/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Go",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"postCreateCommand": "cd go && make init",
"customizations": {
"vscode": {
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/java-spring-boot/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Java Spring Boot",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"containerEnv": {
"DISABLE_JAVA_BUILD": "true"
},
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/java/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Java",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"containerEnv": {
"DISABLE_JAVA_BUILD": "true"
},
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/javascript/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Javascript",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"postCreateCommand": "cd javascript && make init",
"customizations": {
"vscode": {
Expand All @@ -18,5 +18,5 @@
"firsttris.vscode-jest-runner"
]
}
}
},
}
2 changes: 1 addition & 1 deletion .devcontainer/jupyter-notebook/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Jupyter Notebook",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"postCreateCommand": "cd jupyter-notebook && make init",
"customizations": {
"vscode": {
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/python/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Python",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"postCreateCommand": "cd python && make init",
"customizations": {
"vscode": {
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/typescript-react/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Typescript React",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"postCreateCommand": "cd typescript-react && make init",
"customizations": {
"vscode": {
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/typescript/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Typescript",
"image": "mcr.microsoft.com/devcontainers/universal:focal",
"image": "mcr.microsoft.com/devcontainers/universal:2-focal",
"postCreateCommand": "cd typescript && make init",
"customizations": {
"vscode": {
Expand Down

0 comments on commit bef6e7f

Please sign in to comment.