mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
44 lines
1.5 KiB
JSON
44 lines
1.5 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
|
|
{
|
|
"name": "Existing Dockerfile",
|
|
"build": {
|
|
// Sets the run context to one level up instead of the .devcontainer folder.
|
|
"context": "..",
|
|
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
|
|
"dockerfile": "./Dockerfile"
|
|
},
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/node:1": {
|
|
"nodeGypDependencies": true,
|
|
"installYarnUsingApt": true,
|
|
"version": "lts",
|
|
"pnpmVersion": "latest",
|
|
"nvmVersion": "latest"
|
|
},
|
|
"ghcr.io/devcontainers/features/python:1": {
|
|
"installTools": true,
|
|
"version": "os-provided"
|
|
}
|
|
},
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
// "features": {},
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
"forwardPorts": [
|
|
8484
|
|
],
|
|
// Uncomment the next line to run commands after the container is created.
|
|
// "postCreateCommand": "cat /etc/os-release",
|
|
"postCreateCommand": "yarn install && yarn install:python",
|
|
// Configure tool-specific properties.
|
|
// "customizations": {},
|
|
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
|
|
"remoteUser": "node",
|
|
"capAdd": [
|
|
"SYS_PTRACE"
|
|
],
|
|
"securityOpt": [
|
|
"seccomp=unconfined",
|
|
"apparmor=unconfined",
|
|
],
|
|
} |