Initial Commit
This commit is contained in:
3
.devcontainer/DOCKERFILE
Normal file
3
.devcontainer/DOCKERFILE
Normal file
@@ -0,0 +1,3 @@
|
||||
FROM denoland/deno
|
||||
RUN apt update
|
||||
RUN apt install git -y
|
||||
44
.devcontainer/devcontainer.json
Normal file
44
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
// Displayed name
|
||||
"name": "Deno-Message-Utils",
|
||||
|
||||
// Image to be used
|
||||
"build": {
|
||||
"dockerfile": "DOCKERFILE"
|
||||
},
|
||||
|
||||
// Customization
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
"fabiospampinato.vscode-highlight",
|
||||
"fabiospampinato.vscode-todo-plus"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
// Env in container
|
||||
"containerEnv": {
|
||||
|
||||
},
|
||||
|
||||
// Mounts in container
|
||||
"mounts": [
|
||||
{
|
||||
"source": "${localWorkspaceFolder}",
|
||||
"target": "/workspace",
|
||||
"type": "bind"
|
||||
}
|
||||
],
|
||||
|
||||
// The WorkspaceFolder inside container
|
||||
"workspaceFolder": "/workspace",
|
||||
|
||||
// RunArgs
|
||||
"runArgs": [
|
||||
"--name",
|
||||
"Typescript-MessageUtils"
|
||||
]
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user