diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-07-16 03:16:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-16 03:16:58 +0300 |
commit | b0e2f6ac23afbdef657e4b4973c02ec35a30c7bd (patch) | |
tree | 2d39fce9e805920581d0301766dcc8a207fdd7c9 | |
parent | c1539e2cb01a576cc99129872516c310ba0dc9b2 (diff) |
oryx: fix env variable DYNAMIC_INSTALL_ROOT_DIR (#63)
fix bug
-rw-r--r-- | src/oryx/devcontainer-feature.json | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/oryx/devcontainer-feature.json b/src/oryx/devcontainer-feature.json index d313854..5a04cab 100644 --- a/src/oryx/devcontainer-feature.json +++ b/src/oryx/devcontainer-feature.json @@ -5,14 +5,10 @@ "containerEnv": { "ORYX_SDK_STORAGE_BASE_URL": "https://oryx-cdn.microsoft.io", "ENABLE_DYNAMIC_INSTALL": "true", - "DYNAMIC_INSTALL_ROOT_DIR": "/usr/local/oryx-platforms", + "DYNAMIC_INSTALL_ROOT_DIR": "/opt", "ORYX_PREFER_USER_INSTALLED_SDKS": "true", "ORYX_DIR": "/usr/local/oryx", "DEBIAN_FLAVOR": "focal-scm", "PATH": "${ORYX_DIR}:${PATH}" - }, - "install": { - "app": "", - "file": "install.sh" } -}
\ No newline at end of file +} |