Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • docker-images/devcontainer/dotnet
1 result
Show changes
Commits on Source (4)
include:
- project: docker-images/templates
ref: master
file: devcontainer_images.gitlab-ci.yml
build:
extends: .build_image_job_template
variables:
IMAGE_BASENAME: ${IMAGE_PREFIX}/devcontainer-dotnet
IMAGE_NAME: ${IMAGE_BASENAME}:8.0
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "docker build",
"command": "docker",
"args": [
"build",
"."
]
}
]
}
{
"name": ".NET",
"workspaceFolder": "/workdir",
"workspaceMount": "source=${localWorkspaceFolder},target=/workdir,type=bind,consistency=delegated",
"remoteUser": "vscode",
"image": "andrijoos/devcontainer-dotnet:8.0",
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"ms-dotnettools.csdevkit",
"hbenl.vscode-test-explorer"
]
}
},
"containerEnv": {
"SHELL": "/bin/bash"
},
"postCreateCommand": "dotnet restore"
}